body {
    background-color: #292929;
}

/* Navbar container */
.navbar {
    width: 100%;
    background-color: #34b3b0;
    overflow: hidden;
}

/* Links inside the navbar */
.navbar a {
    float: left;
    text-align: center;
    padding: 8px 16px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
}

/* The dropdown container */
.dropdown {
    float: left;
    overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
    font-size: 15px;
    border: none;
    outline: none;
    color: #000;
    padding: 8px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #8ef5f3;
    border-radius: 4px;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #34b3b0;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #8ef5f3;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* .active {
    background-color: #673ab7;
} */

/* Add responsiveness - will automatically display the navbar vertically instead of horizontally on screens less than 500 pixels */
@media screen and (max-width: 500px) {
    .navbar a {
        float: none;
        display: block;
    }
}

div.main-content {
    text-align: center;
    user-select: none;
}

div.main-content h1 {
    font-size: 10vw;
    font-family: 'Lobster', serif;
    font-weight: 400;
    margin: 10px 0;
}

div.main-content pre {
    font-family: monospace;
    font-size: 1.5vw;
}

.rainbow-text-animated-lr {
    background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation_1 6s ease-in-out infinite;
    background-size: 400% 100%;
}

.rainbow-text-animated-rl {
    background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation_2 6s ease-in-out infinite;
    background-size: 400% 100%;
}

@keyframes rainbow_animation_1 {
    0%,100% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }
}

@keyframes rainbow_animation_2 {
    0%,100% {
        background-position: 100% 0;
    }

    50% {
        background-position: 0 0;
    }
}

.nice-gradient {
    background-image: linear-gradient(
        #DAB046 20%,
        #D73B25 20%,
        #D73B25 40%,
        #C71B25 40%,
        #C71B25 60%,
        #961A39 60%,
        #961A39 80%,
        #601035 80%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 400% 100%;
}
