* {
    padding: 0px;
    margin: 0px;
    color: white;
    font-family: "Kanit", "sans-serif";
    font-weight: 400;
}

#particles-js canvas {
    opacity: 0.4;
}


header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.headerDiv {

    display: flex;
    background-color: #511281;
    width: 100%;

}

.navLinks {
    list-style-type: none;
    margin: auto 0px;
}

.navToggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    margin-left: auto;
    margin-right: 10px;
}

@media screen and (min-width: 700px) {
    .navToggle {
        display: none !important;
    }
}


.navLinks > li {
    font-family: "Kanit", "sans-serif";
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 1.2em;
    float: left;
    padding: 25px 30px;
    color: white;
}

.navLinks a {
    color: white;
    text-decoration: none;
    transition: 200ms;
}

.navLinks > li:hover {
    text-decoration: underline;
    letter-spacing: 0.2em;
}

#headerLogo {
    margin-top: auto;
    margin-bottom: auto;
    margin-right: auto;
    margin-left: 10px;
    display: inline-block;
}

#headerLogo img {
    width: 70px;
    height: auto;
    vertical-align: middle;
}

body {
    background: rgb(11, 0, 22);
    overflow-x: clip;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(11, 0, 22);
  background-size: cover;
  z-index: -1;
}

.animate {
    opacity: 0;
}

h1 {
    margin: 1rem 3rem;
    font-weight: 400;
    font-size: 3rem;
    color: #53D958;
    /* font-family: 'League Gothic', 'sans-serif'; */
}

h2 {
    font-size: 1.5rem;
}

img {
    border-radius: 5px;
}

footer h1 {
    font-size: 2em;
    margin: 0;
}

footer #footerContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: #21094E;
}

#footerAbout {
    display: flex;
}
#footerAbout img {
    object-fit: cover;
    max-height: 15vh;
    margin: 5px 20px;
}
#footerAbout h1 {
    margin: 0px;

}

#footerSocial img{
    height: 5vh;
    width: 5vh;
    margin: 0px 5px;
    object-fit: cover;
    border-radius: 0%;
}

#footerSocial a{
    text-decoration: none;
}

#footerMoreInfo img{
    height: 5vh;
    width: 5vh;
    margin: 0px 5px;
    object-fit: cover;
    border-radius: 0%;
}

#footerMoreInfo a{
    text-decoration: none;
}

#footerAboutImg {
    display: none;
}

.buttonWrapper {
    width: 30%;
    height: 50%;
    margin: auto;
}

button:not(.navToggle) {
    position: relative;
    background-color: black;
    width: 100%;
    height: 100%;
    border: solid 5px;
    transition: 250ms;
    z-index: 2;
}

button:not(.navToggle):hover{
    background-color: hsl(0, 0%, 0%);
    letter-spacing: 0.05rem;
}

button:hover ~ .dropShadow{
    transform: translate(5px, calc(-100% + 5px));
}

.dropShadow {
    position: relative;
    z-index: 1;
    background-color: white;
    width: 100%;
    height: 100%;
    transform: translate(0,-100%);
    transition: 250ms;
}

@media screen and (max-width: 700px) {
    footer h1 {
        font-size: 1rem;
    }
    footer p {
        font-size: 0.7rem;
    }
    #footerAbout img {
        width: 50px;
        height: 50px;
    }
    #footerSocial img {
        width: 20px;
        height: 20px;
        margin: 0px 5px;
    }

    #footerMoreInfo img {
        width: 20px;
        height: 20px;
        margin: 0px 5px;
    }

    .navLinks {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #511281;
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
    }

    .navToggle {
        display: block;
    }


    .navLinks > li {
        float: none;
        font-size: 3vw;
        padding: 10px 2vw;
    }
    .navLinks.active {
        display: flex;
    }
    .headerDiv {
        width: 100vw;
        margin: 0 0;
        padding: 0 0;
        flex-direction: row;
        position: relative;
    }

    .buttonWrapper {
        width: 80%;
        height: 80%;
        margin: 20px auto;
    }

}
