.redFont { color: #f83d3d !important; }
.contactCard {
    width: 60%;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    padding: 0 10px 50px 10px;
    margin: calc(10% + 75px) auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, .4);
    border-radius: 10px;
    box-shadow: .3em .3em .5em 0 #222222;
    font-size: 1.5em;
    text-align: center;
}
.contactCard .headshot {
    position: relative;
    top: -75px;
    width: 150px;
    height: 150px;
    border: solid 1px #000000;
    border-radius: 75px;
    /* background-image: url('headshot.jpg'); */
    background-color: darkblue;
}
.contactCard a {
    position: relative;
    top: -30px;
    width: 100%;
    height: auto;
    color: #000000;
    text-decoration: none;
}
.contactCard .script {
    font-size: 1.75em;
    border-bottom: solid 1px #000000;
}
.contactForm {
    width: 80%;
    max-width: 800px;
    min-width: 450px;
    height: auto;
    margin: 10% auto 4em auto;
    padding: 2em;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: .2em .2em .4em .1em rgba(0, 0, 0, 0.5);
    border-radius: .5em;
}
.contactForm form {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}
.contactForm form div {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 1em 0;
}
.contactForm form div div {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.contactForm h1 {
    text-align: center;
    padding: 0;
    margin: 0;
    color: #FFFFFF;
    font-size: 2.5em;
}
.contactForm label {
    color: #FFFFFF;
    font-size: 1.5em;
    padding: 0;
    margin: 5px;
}
.contactForm .textbox {
    background: none;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: .5em;
}
.contactForm .textbox:is(textarea) {
    background-color: rgba(255,255,255,0.1);
} 
.contactForm .textbox:focus {
    outline: none;
    background-color: rgba(255,255,255,0.3);
}
.contactForm button {
    padding: .75em;
    border: 1px solid #FFFFFF;
    background-color: rgba(255,255,255,0.1);
    font-size: 1.5em;
    color: #FFFFFF;
}
.contactForm button:hover {
    background-color: rgba(255,255,255,0.3);
}
.contactForm button:active {
    border: inset;
}
.validationAlert {
    display: none;
    width: 100%;
    height: auto;
    border: 1px solid yellow;
    border-left: 1em solid yellow;
    background-color: rgba(255, 255, 0, 0.2);
    color: black;
    padding: .5em;
    font-size: 1.3em;
}
.error {
    display: none;
    width: 100%;
    height: auto;
    border: 1px solid red;
    border-left: 1em solid red;
    background-color: rgba(255, 0, 0, 0.2);
    color: black;
    padding: .5em;
    font-size: 1.3em;
}
.success {
    display: none;
    width: 100%;
    height: auto;
    border: 1px solid green;
    border-left: 1em solid green;
    background-color: rgba(0, 255, 0, 0.2);
    color: black;
    padding: .5em;
    font-size: 1.3em;
}
