* {
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color:transparent;
    color: #fff;
    scroll-behavior: smooth;
}

/* Home background video */

#homebackvideo {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -50;
    filter: brightness(50%) blur(3px);
}

#logo {
    width: 25dvw;
    height: auto;
    margin: 0px;
    border: none;
    margin-bottom: -25%;
}


.social-media-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    list-style: none;
    align-content: center;
    flex-direction: row;
    flex-flow: auto;
    margin-left: 0%;
    background-color: transparent; /* Add this line */
}

.social-media-icons li {
    margin: 0 10px;
    text-align: center;
    background-color: transparent !important;
}

.social-media-icons li a img {
    width: 50px; /* Adjust as needed */
    height: 50px; /* Adjust as needed */
    transition: transform 0.3s ease-in-out;
    background-color: transparent !important;
}

.social-media-icons li a img:hover {
    transform: scale(1.1);
    background-color: transparent !important;
}


/* Mobile */
@media screen and (max-width: 480px) {
    #homebackvideo {
        width: 100%;
        height: auto;
        position: fixed !important;
    }
}

/* Tablet */
@media screen and (min-width: 481px) and (max-width: 768px) {
    #homebackvideo {
        width: 100%;
        height: auto;
    }
}


header {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 2px;
}

header h1 {
    color: forestgreen;
    font-size: 5dvw;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.5dvw;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1; /* Ensures particles are in the background */
    background: transparent; /* Optional: set a background color */
}



nav ul li a:hover {
background-color: #353839;
border: 3px solid white;
color: white;
}

.currentheader {
    background-color: #353839;
    border: 3px solid white;
}

footer {
    text-align: center;
    padding: 40px;
    position: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    color: #fff;
}

footer p {
    font-size: 14px;
    animation: flash 1s infinite;
    margin: 0;
    padding: 10px;
}

main {
    padding: 40px;
    text-align: center;
}

main section {
    background-color: white;
    border: 5px solid black;
    background-clip: padding-box;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: forestgreen;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 1px;
}

p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

main p {
    font-size: 25px;
    font-weight: bolder;
    color: black;
}

a {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: black;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    border-color: black;
    border-width: 5px;
    transition: background-color 0.3s ease;
}

a:hover {
    background-color: white;
    transform: scale(1.1); /* Add a scaling effect on hover */
    border: 3px solid black;
    color: black;
}

.currentfooter {
    background-color: white;
    transform: scale(1.1); /* Add a scaling effect on hover */
    border: 3px solid black;
    color: black;
}

footer {
    text-align: center;
    padding: 20px;
}

footer p i, footer p {
    font-size: 1.5dvw;
    -webkit-text-stroke: #000000 .5px;
    font-style: italic;
    color: white;
}

footer a {
    font-size: 1.5dvw;
    color: white;
}

footer ul {
    display: flex;
    flex-direction: row;
    margin-left: 30dvw;
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}


#logo_link {
    text-decoration: none;
    background-color: transparent !important;
    border: none;
}

#logo_link:hover {
    position: relative;
    background-color: transparent !important;
}


/* Mobile */
@media screen and (max-width: 480px) {
    header h1 {
        font-size: 10dvw;
    }

    main h2 {
        font-size: 8dvw !important;
    }


    h1 {
        margin-top: 6.5dvh;
        margin-bottom: 2.5dvh;
        font-size: 36px;
    }

    .hamburger-menu {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 22px;
        position: relative;
        margin: 15px;
        opacity: 0.8; /* Add opacity effect */
        margin-top: -5%;    
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .hamburger-menu div {
        width: 200%;
        height: 3px;
        line-height: 50%;
        background-color: white;
        position: absolute;
        left: -5dvw;
    }

    .hamburger-menu div:nth-child(1) {
        top: 0;
        transform: translateY(0) rotate(0);
        opacity: 1;
    }

    .hamburger-menu div:nth-child(2) {
        top: 10px;
        transform: translateY(-50%);
        opacity: 1;
    }

    .hamburger-menu div:nth-child(3) {
        top: 20px;
        transform: translateY(-100%) rotate(0);
        opacity: 1;
    }

    nav ul.menu {
        display: none;
        position: absolute;
        margin-top: 0dvh; /* Adjust as needed */
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 15px;
        box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        opacity: .9; /* Add opacity effect */
        border: 3px solid green;
        animation: dropdown .5s ease-in;
        z-index: 10000;
    }

    @keyframes dropdown {
        0% {
            transform: translateY(-100%);
        }
        50% {
            transform: translateY(10%);
        }
        100% {
            transform: translateY(0);
        }
    }
    nav ul.menu li {
        margin: 10px 0;
    }

    nav ul.menu li a {
        color: forestgreen;
        animation: pop 0.3s ease;
        font-size: 10dvw;
        z-index: 10000;
        font-style: italic;
    }

    @keyframes pop {
        0% {
            transform: scale(1);
        }d
        50% {
            transform: scale(1.2);
        }
        100% {
            transform: scale(1);
        }
    }

    footer ul {
        display: flex;
        flex-direction: row;
        margin: 0;
        list-style: none;
        justify-content: center; /* Add this line */
    }

    #logo {
        width: 40dvw;
        height: auto;
        margin-bottom: -8dvh;
        margin-top: -50%;
    }
    footer a {
        font-size: 15px;
        color: white;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 5px;
        border-color: black;
        border-width: 5px;
        

    }
    footer p i, footer p {
        color: forestgreen;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        font-size: 20px;
    }

   body {
        background-color: black;
    }

    #homebackvideo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -50;
        filter: brightness(40%) blur(3px);
    }
    main p {
        font-size: 4dvw;
    }
}

/* Tablet */
@media screen and (min-width: 481px) and (max-width: 769px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 24px;
    }

    main p {
        font-size: 20px;
    }

    nav ul li {
        margin: 0 5px;
    } 

    footer ul {
        margin-left: -9dvw !important;
        justify-content: center; /* Add this line */
    }
}
