* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    gap: 1rem;
    background-color: #000;
    overflow: hidden;
}

#title {
    font-size: 1.5em;
    color: #9d9d9d;
    z-index: 10;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    animation: fade-in 0.25s both ease-in-out;
}

#buttons {
    display: flex;
    gap: 1rem;
}

.button {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 2px solid #9d9d9d;
    color: #9d9d9d;
    text-decoration: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    animation: fade-in 0.25s both ease-in-out; 
    transition: background-color 0.25s both ease-in-out, color 0.25s both ease-in-out;
}

.button:hover {
    background-color: #9d9d9d;
    color: #000;
}

#secret {
    position: relative;
    justify-self: center;
    font-size: 1.5em;
    color: #9d9d9d;
    z-index: 10;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    animation: fade-in 0.25s both ease-in-out;
}

#container {
    position: absolute;
    top: calc(50% + 1.5rem);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 329.25px;
    height: 336px;
    z-index: 10;
}

#container:hover {
    background-image: url(https://media.tenor.com/0Ga48Bh4NWYAAAAe/oi-posso-falar.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#canvas {
    display: block;
    width: max-content;
    height: max-content;
    background-color: #000;
    font-size: 1.5px;
    color: #ffffff;
    overflow: hidden;
    white-space: pre;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    line-height: 1em;
    cursor: pointer;
    z-index: 5;
    animation: fade-in 0.25s both ease-in-out;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}