body {
    font-family: "Jua", Arial, sans-serif;
    background-color: #f5f5f5;
    padding: 2em;
    color: #222;
    background-image: url('../images/background.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    text-transform: uppercase;
    overflow: hidden;
}

h1 {
    font-family: "Kavoon",serif;
    font-size: 40px;
    text-align: center;
}

#menu-container {
    padding: 2em;
    width: 900px;
    height: 400px;
    margin: auto;
    position: relative;
}

#menu-content {
    position: absolute;
    height: 600px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2em;
    margin: 7em 7em 7em 17em;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.textonpaper {
    position: absolute;
    top: 10px;
    height: 550px;
    margin: 7em 7em 7em 17em;
}

.textscroll {
    max-height: 380px;
    white-space: pre-line;
    overflow: auto;
    padding-right: 20px;
    margin-bottom: 30px;
}

img.responsiveimg {
    width: 100%;
    height: auto;
}

#parchment {
    width: 100%;
    display: block;
    position: absolute;
}

#kuro {
    width: 500px;
    left: -200px;
    top: 50px;
    display: block;
    position: absolute;
    animation: bounce 3s infinite linear;
}

#back {
    rotate: 180deg;
}


a {
    color: #DF0421;
}

button, input {
    width: 100%;
    height: 80px;
    margin: 15px;
    border-radius: 10px;
    background-color: #f3f3f3;
    font-family: "Jua", sans-serif;
    font-size: 20px;
}

p {
    font-size: 13px;
    line-height: 24px;
}

.Btn {
    width: 100%;
    height: 70px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #77530a, #ffd277, #77530a, #77530a, #ffd277, #77530a);
    background-size: 150%;
    background-position: left;
    color: #ffd277;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: 1s;
    overflow: hidden;
}

    .Btn::before {
        position: absolute;
        content: attr(data-text);
        color: #ffd277;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 98%;
        height: 90%;
        border-radius: 8px;
        transition-duration: 1s;
        background-color: rgba(0, 0, 0, 0.842);
        background-size: 200%;
        font-size: 18px;
    }

    .Btn:hover {
        background-position: right;
        transition-duration: 1s;
    }

        .Btn:hover::before {
            background-position: right;
            transition-duration: 1s;
        }

    .Btn:active {
        transform: scale(0.95);
    }

.Btn_group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta, .cta svg {
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cta:hover svg {
        margin-right: 5px;
        transition: all 0.2s ease;
    }

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #D62929;
    background-image: -webkit-linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4) 50%, transparent, transparent)
}

/* KEYFRAMES */

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* RESPONSIVE MEDIA */

@media (max-width: 768px) {
    #kuro {
        width: 0%;
    }

    #menu-container {
        padding: 1em;
        width: 700px;
        height: 350px;
        left: -50px;
        margin: auto;
        position: relative;
    }

    #menu-content {
        position: absolute;
        top: 30px;
        left: 30px;
        right: 10px;
        bottom: 0px;
        padding: 1em;
        margin: 3em;
        height: 450px;
        width: 500px;
        overflow-y: auto;
    }

    button, input {
        width: 90%;
        height: 60px;
        margin: 5px;
        border-radius: 10px;
        background-color: #f3f3f3;
        font-family: "Jua", sans-serif;
        font-size: 20px;
    }
}
