* {
    margin: 0;
    padding: 0;
    font-family: 'poppins', 'sans-serif';
    box-sizing: border-box;
}
.hero{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.4), #3551b5), url(Utah-Basin-1.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.specs{
    align-items: center;
    justify-content: center;
    display: flex;
    justify-content: space-around;
    text-align: center;
    color: #fff;
    border: 1px solid;
    padding: 10px;
}
.info{
    align-items: center;
    justify-content: center;
    text-align: center;  
    
}
.headshot{
    max-width: 22%;
}
form{
    width: 90%;
    max-width: 600px;
}
.form-title{
    text-align: center;
    color: #fff;
    padding: 27px;
}
.input-group{
    margin-bottom: 30px;
    position: relative;
}
input, textarea{
    width: 100%;
    padding: 10px;
    outline: 0;
    border: 1px solid;
    color: #fff;
    background: transparent;
    font-size: 15px;
}
label{
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    color: #fff;
    cursor: text;
    transition: 0.2s;    
}
button{
    padding: 10px 0;
    color: #fff;
    outline: none;
    background: transparent;
    border: 1px solid #fff;
    width: 100%;
    cursor: pointer;
}
input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label{
    top: -31px;
    font-size: 14px;
}
.row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.row .input-group{
    flex-basis: 48%;
}
.fortified{
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
    color: #fff;
}