html{
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

input:focus, textarea:focus {
    outline: none;
    box-shadow: none;
    
}

p {
    margin: 0.75rem 0;
}

a {
    color: rgba(0, 255, 255, 0.959);
    text-decoration-line: none;
}
a:hover {
    cursor: pointer;
    color: #aae3fa;
    text-decoration: underline;
}

a:visited {
    color: #d1ff5d;
}

button {
    border: 1px solid #84abbb;
    border-radius: 3px;
    padding: 5px;
}

button:hover {
    background-color:#d1ff5d;
    border: 1px solid black;
    border-radius: 3px;
    cursor: pointer;
    
}

#nav-line-one {
    width: 100%;
    height: 1em;
    background-color: #84abbb;
}

#nav-line-two {
    width: 100%;
    height: 1em;
    background-color: #94b63d;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
}

#content {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 1.5rem;
    padding: 1.5em;
}

#info {
    display: flex;
    max-width: 600px;
    flex-direction: column;
    align-items: center;
    border: 1px solid black;
    border-radius: 5px;
}
#info-header {
    width: 100%;
    background-color: #84abbb;
    
}
#info-header img {
    display: block;
    width: auto;
    height: auto;
    margin: auto;
    border-radius: 5px;
}

#info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5em;
    text-align: center;
    font-weight: bold;
    background-color: #94b63d;
    color: white;
}

#info-footer {
    display: flex;
    width: 100%;
    justify-content: space-around;
    background-color: #84abbb;
}

#form-div {
    display: flex;
    max-width: 40%;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border: 1px solid black;
    border-radius: 5px;
    -webkit-box-shadow: 3px 3px 5px 6px #ccc;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow:    3px 3px 5px 6px #ccc;  /* Firefox 3.5 - 3.6 */
    box-shadow:         3px 3px 5px 6px #ccc;  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
    height: fit-content;
}

#form-div form {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
}

#form-div form input {
    font-size: 0.8em;
}

#form-div form #question {
    font-size: 0.8em;
}

#form-div form #name-input-div {
    display: flex;
    flex-direction: column;
    box-sizing: content-box;
    width: 100%;
    margin: 1.3em 1em 1.3em 1em;
    color: #84abbb;
    font-size: 23px;
}

#form-div form #email-input-div {
    display: flex;
    flex-direction: column;
    width: 45%;
    margin: 1.3em 1em 1.3em 0;
    color: #84abbb;
    font-size: 23px;
}

#form-div form #phone-input-div {
    display: flex;
    flex-direction: column;
    width: 45%;
    margin: 1.3em 0 1.3em 1em;
    color: #84abbb;
    font-size: 23px;
}
#form-div form #question-input-div {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 200px;
    margin: 1.3em 1em 1.3em 1em;
    color: #84abbb;
    font-size: 23px;
}
#form-div form #submit-button-div {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 1.3em 1em 1.3em 1em;
}

#submit-btn {
    max-width: 50%;
    margin: auto;
    font-size: 23px;
    color: #84abbb;
    padding: 5px;
}

#map-key {
    margin: auto;
    color: #84abbb;
}

#form-div form textarea {
    font-size: 1.3em;
    height: 100%;
    resize: none;
}

#form-div form #name {
    width: 100%;
    margin: 0 1em 0 0;
}

#form-div form #phone-number {
    margin: 0 1em 0 0;
}

#hidden-input {
    display: none;
}

#footer {
    height: 5em;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 5px;
    justify-content: space-around;
    background-color: #84abbb;
    position: fixed;
    bottom: 0;
}

#footer div {
    padding: 5px;
}

@media (max-height: 900px) {
    #footer{
        position: relative;
        
    }
}

@media (max-width: 1250px) {
    #content {
        flex-direction: column;
        align-items: center;
    }

    #info {
        max-width: 80%;
    }

    #form-div form #email-input-div {
        padding-left: 1em;
        width: 100%;
    }

    #form-div form #phone-input-div {
        width: 100%;
        
    }

    #footer{
        position: relative;
        height: 6.5em;
    }

    #form-div {
        max-width: 80%;
    }
}

@media (max-width: 500px) {
    #content {
        flex-direction: column;
        align-items: center;
        padding: 10px 0 10px 0;
        margin: auto;
    }

    #info {
        max-width: 95%;
        margin: auto;

    }

    #info-header img {
        height: 6em;
    }

    #form-div {
        max-width: 90%;
        font-size: smaller;
        margin: auto;
    }

    #form-div form input, textarea {
        max-width: 250px;
        
    }

    #form-div form #email-input-div {
        width: 300px;
        padding-left: 1em;
    }

    #form-div form #phone-input-div {
        width: 300px;
        
    }

    #footer {
        height: 7.2em;
        height: fit-content;
    }
    
}