html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #ffb71b;
}

.container {
    flex: 1;
    width: 800px;
    margin: auto;
}

footer {
    padding: 16px 0;
}

.title {
    padding: 40px 0;
    font-size: 80px;
    text-align: center;
    font-weight: bold;
}
.guide {
    font-size: 28px;
    
}
.display {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mascot {
    width: 30%;
}
.copy {
    font-size: 12px;
    text-align: center;
}
@media (max-width: 800px) {
    .container {
        width: 100%;
    }
    .display {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .mascot {
        margin: auto;
    }
}