html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: rgb(6, 26, 26);
    animation: fadein 1.5s;
}

canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    user-select: none;
    background-color: rgb(6, 26, 26);
}

.page-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    width: fit-content;
    border-radius: 3px;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    background-color: rgba(67, 80, 93, 0.7);
    text-align: left;
    font-family: 'Zen Maru Gothic', sans-serif;
    color: rgba(255, 255, 255, 1.0);
    transition: all ease-in-out 0.25s;
}

.card:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    background-color: rgba(67, 80, 93, 0.8);
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}