* {
    /* border: 1px solid green; */
    font-family: Times
}

header {
    background-color: #e9ecef;
    height: 12.5vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;

    display: flex;
    flex-direction: row;
    align-items: center;

}

header img{
    height: 10vh;
    transform: scale(2);
    margin-left: 3vw;
}

header img:hover{
    cursor: pointer;
    transform: scale(2.40)
}

body {
    padding-top: 12.5vh;
    background-color: #f2efe9;
    margin: 0;
    display: flex;
    justify-content: center;
}

main {
    display: flex;
    flex-direction: column;
    gap: 5vh;
    width: 55vw;
    /* border: 1px solid green; */
}

section {
    /* border: 1px solid blue; */
}

.sub-section {
    display: flex;
    flex-direction: column;
    margin-left: 3vw;
    /* border: 1px solid green; */
    gap: 2.5vh;
}

.sub-section p {
    /* border: 1px solid yellow; */
    margin: 0;
    font-size: 18px; 
}

.q-a{
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.answer {
    margin-left: 50px !important;
}

.spacer{
    height: 0.25vh;
}

footer {
    background-color: #e9ecef;
    height: 7.5vh;
    width: 100vw;
    position: fixed;
    bottom: 0;
    left: 0;

    display: flex;
    flex-direction: row;
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    /* border: 1px solid yellow; */
}

.emailInput{
    height: 3vh;
    width: 40vw;
}

.emailMsgInput{
    margin-top: 2.5vh;
    height: 25vh;
    width: 40vw;
}

.emailInput:hover, .emailMsgInput:hover{
    transform: scale(1.0125)
}

form button {
    margin-top: 2.5vh;
    width: 200px;
    height: 50px;
    background-color: black;
    color: white;
    font-weight: bold;
}

form button:hover{
    background-color: #666;
    cursor: pointer;
    transform: scale(1.025)
}

.disclaimer{
    padding-top: 4vh;
}

#careers{
    padding-bottom: 10vh;
}

footer img{
    height: 4.5vh;
    margin-left: 3vw;
}

footer img:hover{
    cursor: pointer;
    transform: scale(1.25)
}

@media(max-width: 768px){
    main {
        width: 85vw;
        /* border: 1px solid green; */
    }
    .emailInput{
        width: 65vw;
    }
    .emailMsgInput{
        height: 15vh;
        width: 65vw;
    }
}