@font-face {
    font-family: Poppins-light;
    src: url(../fonts/Poppins-Light.ttf);
}

@font-face {
    font-family: Poppins-bold;
    src: url(../fonts/Poppins-Bold.ttf);
}

* {
    border: 0;
    margin: 0;
    padding: 0;
}

body {
    /*background-image: url("images/KORimage_9.jpg");*/
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast;
    font-family: Poppins-light;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 110px;
}

#dropdownMediaQuery {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

#dropdownMediaQuery button {
    margin: 10px 10px;
    height: 50px;
    width: 50px;
    border-radius: 20%;
    background-color: rgb(234, 229, 229);
}

#dropdownMediaQuery button:hover {
    background-color: rgb(211, 204, 204);
}


#dropdownMediaQuery #mediaQueryMenu {
    display: none;
    flex-direction: column;
    width: 100%;
}

#mediaQueryMenu .mediaQueryItem {
    background-color: rgb(234, 229, 229);
    color: black;
    display: inline-block;
    padding: 10px 5px;
    text-align: center;
    /*border: 1px solid rgb(179, 179, 179);*/
    border-bottom: 1px solid rgb(179, 179, 179);
    width: 100%;
}

#mediaQueryMenu .mediaQueryItem:hover {
    background-color: rgb(204, 199, 199);
}

#dropdownUL {
    background-color: rgb(234, 229, 229);
    background-position: top;
    margin:0;
    position: static;
    z-index: 500;
    width: 100vw;
    display: flex;
    justify-content: space-evenly;
}

.navbar > ul > a > li {
    list-style-type: none;
    /*display: inline-block;
    /*position: relative;*/
    padding: 20px 30px;
    /*font-size: 18px;*/
    font-size: 1.1vw;
}

.navbar >ul > a > li:hover {
    background-color: rgb(239, 239, 239);
}

a {
    color: black;
    text-decoration: none;
}

#Title {
    display: flex;
    height: 40vh;
    margin: auto;
    gap: 20px;
    font-size: 25px;
    color: black;
    justify-content: center;
    align-items: center;
}

#Title > h1 {
    position: relative;
    top: 100px;
    opacity: 0;
    transition: opacity 1s 1s, top 1s 1s;
}

#formPage {
    background-color: white;
    width: 900px;
    min-width: 60%;
    height: 100%;
    z-index: 0;
    border-radius: 50px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 50px;
    /*bottom: 120px;*/
}

#formPage > p:first-child {
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 45px;
}

#employerForm {
    padding-left: 45px;
    padding-right: 45px;
    padding-bottom: 45px;
}

#employerForm > h3:first-child {
    margin-bottom: 20px;
}

#employerForm > h3 {
    margin-bottom: 20px;
    margin-top: 60px;
}

#employerForm > label {
    width: 50%;
}

#employerForm > label > textarea {
    border: 0.5px solid rgb(168, 168, 168);
    resize: none;
    width: 90%;
    height: 150px;
    font-family: Poppins-light;
    margin-top: 10px;
}

#employerForm > button {
    font-family: Poppins-light;
    border-radius: 20%;
    padding: 10px 20px;
    border: 1px solid rgb(185, 185, 185);
}

#employerForm > button:hover {
    background-color: rgb(198, 198, 198);
}

@media (max-width: 1000px) { /*Replace navbar with button*/
    #dropdownMediaQuery {
        display: flex;
    }

    #dropdownUL {
        display: none;
    }
} 

@media (max-width: 950px) {
    #formPage {
        width: 100vw;
    }
}

@media (max-width: 500px) {
    #Title > h1 {
        font-size: 1em;
    }
}
