

body {
    background-color: rgb(22, 122, 89);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body::after {
    content: "";
    display: table;
    clear: both;
}

.form-body {
    background-color: rgb(22, 122, 89);
    color: antiquewhite;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    height: 962px;
}

header {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 50px;
    text-align: center;
    color: antiquewhite;
    background-color: rgb(22, 122, 89);
}

aside {
    display: flex;
    flex-direction: column;
    float: left;
    background-color: rgb(22, 122, 89);
    gap: 10px;
    padding: 10px;
    
}

aside img {
    width: 400px;
    height: 300px;
    border-radius: 20px;
}

.faq-text {
    font-size: 15px;
    font-weight: bolder;
    color: antiquewhite;
    width: 400px;
    text-align: center;
}

label {
    font-weight: bolder;
}

input {
    border-radius: 10px;
    font-size: 18px;
    background-color: rgb(121, 155, 144);
    color: antiquewhite;
    border: 1px solid ;
}

input:hover {
    background-color: grey;
}



#questiondiv {
    position: relative;
}

#question-label {
    position: absolute;
    top:30px;
    left: 0;
    transform: translate(0,-100%);
    white-space: nowrap;
}

textarea {
    transform: translateX(90px);
    width:200px;
    height: 100px;
    background-color: rgb(121, 155, 144);
    color: antiquewhite;;
}

textarea::placeholder {
    color: antiquewhite;;
    font-style: italic;
}

textarea:hover {
    background-color: grey;
}

#submit-btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    color:antiquewhite;
    font-weight: bolder;
}

#submit-btn:hover {
    background-color: greenyellow;
    color: black;
}

.nav-container {
    background-color: rgb(22, 122, 89);
    display: flex;
    justify-content: space-around;
    gap: 5px;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-item {
    position: relative;
    width: 20%;
    overflow: hidden;
}

.nav-item img {
    width: 100%;
    height: 100px;
    border-radius: 25px;
    padding-top: 10px;
    margin-bottom: 15px;
}

.overhead-txt {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: bolder;
}

.overhead-txt:hover {
    background-color: antiquewhite;
    font-size: larger;
    color: rgb(22, 122, 89);
    border-radius: 25px;
}

footer {
    background-color: rgb(22, 122, 89);
    text-align: center;
    padding: 20px;
    color: white;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

footer a {
    color: rgb(0, 51, 236);
}

footer a:hover {
    color: greenyellow;
}