body {
    background-color: black;
    margin: 0;
    color: #800080;
    height: 80vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    color: inherit;
    font-size: 2em;
    text-align: center;
    font-weight: 800;
    font-family: 'Courier New', Courier, monospace;
}

h2 {
    margin: 0;
    padding: 15px;
    color: inherit;
    font-size: 1.5em;
    font-weight: 800;
    font-family: 'Courier New', Courier, monospace;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 10px;
}

.term {
    margin-bottom: 20px;
}

a {
    font-family: 'Caveat', cursive;
    font-size: 1em;
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 10px;
    background-color: #800080;
    color: black;
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

a:hover {
    background-color: black;
    color: #800080;
    transform: scale(1.1);
}

@media (min-width: 768px) {
    h1 {
        font-size: 3em;
    }

    h2 {
        font-size: 2em;
        padding: 20px;
        margin-bottom: 15px;
    }

    a {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    a {
        width: 40%;
    }
}

/* Hero Area with Waves Animation */
.hero_area {
    position: relative;
    height: 13vh;
    background-color: black;
    overflow: hidden;

    /* Prevent waves from overflowing */
}

.waves {
    position: absolute;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    bottom: 0;
    left: 0;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@media (max-width: 768px) {
    .waves {
        /* height: 40px;
        min-height: 40px; */
        position: fixed;
        bottom: 0;
    }


}