p{
    margin:0;
    color:#454545;
}

#header{
    /* padding:0; */
}

dl{
    color:#454545;
}

dt{
    text-decoration: underline;
}

#sep{
    width:100%;
    height:1px;
    margin:auto;
    border-radius:10px;
    background-color: #b58463;
}

#everything-container{
    display:flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
    width:45vw;
    margin:auto;
    margin-bottom: 85px;
}

#content{
    width:90%;
    margin: 0;
    padding:0px 40px;
    display:flex;
    flex-direction: column;
}

#form-container{
    width:40vw;
    display:flex;
    flex-direction: column;
}

form {
    margin-bottom:40px;
    padding:0px 40px;
}

label,select {
    display: block;
    font-size: 16px;
    color: #454545;
    font-weight:600;
    margin-top:5px;
}

#iframe-container{
    overflow: hidden;
    padding-top: 100%;
    position: relative;
    width: 100%;
}

#iframe-responsive{
    border: none;
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

#small-desc{
    font-size:15px;
    color:#A3A3A8;
    margin:7px 0px;
    line-height: 21px;
}

#intro-form{
    width:50vw;
    margin:auto;
}

#intro-p{
    padding:0 30px;
}

.callout{
    background-color:cornsilk;
    padding:10px 15px;
    border-radius:8px;
}

input[type="text"],
textarea {
    font-family: 'PT Serif', serif;
    width: 97%;
    height:20px;
    border: 1px solid #A3A3A8;
    border-radius: 7px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    padding:9px;
    margin:8px 0px;
}

input[type="checkbox"]{
    margin:10px;
    height: 20px;
    width: 20px;
}

input:focus, textarea:focus {
    border-color: #b58463;
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 50px;
    font-size:17px;
    font-family: 'PT Serif', serif;
}

input[type="submit"] {
    display: block;
    width: 100%;
    background-color: #b58463;
    color: #fff;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    padding:13px 0px;
}

input[type="submit"]:hover {
    background-color: #9A7054;
}

input:checked ~ .checkmark {
    background-color: #b58463;
}

dt{
    font-size:20px;
}

dd{
    margin-top:10px;
    margin-bottom:10px;
}

h2{
    color: #454545;
}

#last-note{
    min-height:100px;
}

@media screen and (max-width:1200px){

    #everything-container{
        flex-direction: column;
        margin:0px 0px;
        width:100%;
    }

    #content{
        padding:5px;
    }

    #form-container{
        padding:5px;
        width:100%;
        margin:auto;
    }

    #intro-form{
        width:90%;
    }

    #intro-p{
        padding:0 10px;
    }

    form{
        padding:0px;
    }

    h2{
        font-size:26px;
        line-height: 30px;
    }

    input[type="text"],
    textarea {
        width: 90%;
    }

    #iframe-container{
        width:90vw;
        margin:auto;
        margin-bottom:100px;
    }

}