body {
    font-family: monospace;
    font-size: clamp(2rem, 10vh, 5.5rem);
    color: #3d5b5b;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    text-align: center;
}

.background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0, #0f2027, #1A1A1A) center center;
    background-size: cover;
    z-index: -1000;
}

.body-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 75%;
    width: 70%;
    max-width: 800px;
    margin: 1.5rem;
}

.body-center-game {
    display: flex;
    flex-directn: column;
    justify-content: center;
    align-content: center;
    height: 100vh;
    width: 100vw;
    max-width: 2000px;
    margin: 1.5rem;
}

.header-game {
    font-size: 1.5rem;
}

.logo img {
    max-height: 800px;
    max-width: 100%;
    margin: 2rem;
}

.logo-small img {
    display: block;
    height: 20vh;
    width: 20vw;
    margin: 2rem auto;
}

.logo:hover {
    opacity: 0.7;
}

.logo-anim {
    animation: logo-anim-keyframes 2s infinite;
}

@keyframes logo-anim-keyframes {
    0% { opacity: .75; }
    50% { opacity: 1; }
    100% { opacity: .75; }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 3.5s linear forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


footer {
    font-size: 1.5rem;
    margin: 2rem;
}

#terminal {
    border: 5px double #21afaf;
    width: 80vw;
    height: 60vh;
    position: relative;
    z-index: 1;
}
