*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: monospace;
}
section{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7) ,rgba(4,9,30,0.7)),url(contact-2background.jpg);   
    border-radius: 8px;    
    display: flex;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.container{
    position: absolute;
    top: 50%;
    width:50%;
    height: 70%;
    left: 70%;
    transform: translate(-50%,-50%);
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 0px 20px #00000010;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid black;
}
.form-group{
    width: 100%;
    margin-top: 24px;
    font-size: 20px;
}
.font-group input,
.form-group textarea{
    height: 20vh;
    width: 100%;
    padding:5px;
    font-size: 18px;
    border: 1px solid ridge(128,128,128,0.194);
    margin-top: 5px;
}
textarea{
    resize: vertical;
}
button[type="submit"]{
    width: 100%;
    border: none;
    outline: none;
    padding: 20px;
    font-size: 24px;
    border-radius: 8px;
    font-family: 'monospace';
    color: rgb(248, 108, 0);
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s ease background-color;
}
button[type="submit"]:hover{
    background-color: rgb(67, 64, 64);
}
#status{
    width: 90%;
    max-width: 500px;
    text-align: center;
    padding: 10px;
    margin: 0 auto;
    border-radius: 8px;
}
#status.success{
    background-color: yellow;
    animation: status 4s ease forwards;
}
#status.error{
    background-color: rgb(250, 195, 92);
    color: white;
    animation: status 4s ease forwards;
}
.about-us{
    position: absolute;
    top: 17%;
    left: 10%;
    color: white;
    font-size: 20px;
    max-width: 500px;
}
.about-us h1{
    color: red;
}
.about-us h3{
    margin-top: 20px;
}
.footer-col{
    position: absolute;
    top: 50%;
    left: 10%;
    color: red;
    font-size: 20px;
    max-width: 500px;
}
.footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    border-color: rgba(255,255,255,0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
    color: #24262b;
    background-color: rgb(255, 111, 0);
}
@media(max-width: 700px){
    .container{
        height:60%;
        top: 65%;
        left: 50%;
        width: 80%;
    }
    .font-group input,
.form-group textarea{
    height: 10vh;
}
.about-us{
    top:3%;
    font-size: 12px;
}
.footer-col{
    top: 23%;
}
}