@font-face {
    font-family: 'EnchantedLand';
    src: url('/assets/font/Enchanted%20Land.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'EnchantedLand', sans-serif;
    background: #EDD9B6;
    color: #000;
    margin: 0;
    display: grid;
    place-content: center;
    min-height: 100vh;
    text-align: center;
    background-image: url(/assets/img/bg_main.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    cursor: url('/assets/img/cursor.png') 0 0, auto;
}



.question img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question {
    background-image: url(/assets/img/bg.webp);
    background-position: center;
    background-size: cover;
    border-top-left-radius: 999px;
    border-top-right-radius: 999px;
    overflow: hidden;
    box-shadow:
        rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
        rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
        rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    width: 100%;
    max-width: 490px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    animation: fadeUp 0.6s ease-out forwards;

}


.votes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.votes a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 22px;
}

.question h1 {
    font-size: 3.5rem;
    margin-bottom: 5rem;
    line-height: 1;
}

.question_content {
    padding: 2rem;
    position: relative;
    top: -4rem;
}

.tag {
    background: #AE470E;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    color: white;
    font-size: 25px;
    text-decoration: none;
}

.question .btn-next {
    font-family: inherit;
    background: transparent;
    border: 0;
    font-size: 30px;
    padding: 0;
    cursor: pointer;
    color: black;
    margin-bottom: 2rem;
}

.question .btn-next:hover {
    text-decoration: underline;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    filter: brightness(1.1);
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .question img {
        height: 250px;
    }

    .question_content {
        padding: 1rem;
        top: -2.8rem;
    }

    body {
        background-image: url(/assets/img/bg.webp);
        background-position: center;
        background-size: cover;
        min-height: unset;
    }

    .question {
        box-shadow: none;
        background: none;

    }

    .question h1 {
        font-size: 3rem;
        margin-bottom: 2rem;

    }

}