header {
    background-color: rgb(0, 0, 0);
    text-align: center;
    padding: 25px;
    width: fill;
    color: white;
}

body {
    text-align: center;
    background-image: linear-gradient(to right top, #444444, #343434, #242424, #161616, #000000);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
}

.right-to-left {
    animation: 0.4s right-to-left forwards;
    font-weight: 600;
    letter-spacing: -.005em;
    font-family: Arial, Helvetica, sans-serif;
    color: aliceblue;
    text-align: center;
}

@keyframes right-to-left {
    from {
        transform: translateX(-100vw);
    }

    to {
        transform: translateX(0);
    }
}

.great {
    color: white;
    text-align: center;
    font-size: 16px;
    opacity: 0.6;
    transition: 0.3s;
    transition: transform 0.5s ease;
    border-radius: 15%;
}

.great:hover {
    opacity: 1;
    transform: scale(1.20);
}

.yo {
    color: white;
    text-align: center;
    font-size: 16px;
    opacity: 0.6;
    transition: 0.3s;
    transition: transform 0.5s ease;
    border-radius: 15%;
}

.yo:hover {
    opacity: 1;
    transform: scale(1.20);
}

a:link {
    text-decoration: none;
    background-color: transparent;
}

a:visited {
    color: rgb(255, 255, 255);
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    float: left;
}

a {
    font-size: 125%;
    margin-right: 35px;
}

.navbar {
    font-family: Arial, Helvetica, sans-serif;
    padding-right: 15px;
    padding-left: 15px;
    background-color: rgba(0, 0, 0, 0.793);
}

.navbar-responsive {
    display: none;
}

.navdiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

li a {
    color: white;
}

.bigfont {
    display: flex;
    font-size: larger;
    border: solid 20px;
    border-color: rgb(75, 75, 75);
    background-color: rgba(195, 195, 195, 0.778);
    border-radius: 15px;
    width: 700px;
    margin: 20px;
    padding: 10px;
}

.border {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

.current {
    text-decoration: underline 1px;
    color: white;
}



@media screen and (max-width: 800px) {
    .navbar {
        display: none;
        font-size: 10px;
        flex-direction: column;
    }
    .navbar-responsive {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 10px;
    } 
    .menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 18px;
        padding-left: 35px;
        padding-top: 20px;
        gap: 20px;

    }
    .navbar-responsive {
        background-color: rgba(0, 0, 0, 0.793);
    }
    
    .menu-button{
        margin-top: 10px;
        width: 50px;
        height: 30px;
    }

    .bigfont {
        margin: 20px;
        border: solid 20px;
        border-color: rgb(75, 75, 75);
        background-color: rgba(195, 195, 195, 0.778);
        border-radius: 15px;
    }

    .border {
        margin: 10px;
        padding: 10px;
    }
}