    
    body {
    background-color: #f4f4f4;
    }
    
    .contact {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: -webkit-fill-available;
    margin: 90px 20px 30px 20px;
    padding: 40px 0 10px 0;
    }
    
    .contactText {
    text-align: right;
    margin-right: 60px;
    }
    
    .contactText h1 {
    margin: 0;
    color: black;
    }
    
    #contactForm {
    width: 70%;
    display: flex;
    flex-direction: column;
    }
    
    #contactForm label {
    width: -webkit-fill-available;
    color: black;
    display: flex;
    padding: 5px 0;
    font-size: 18px;
    font-weight: bold;
    }
    
    #contactForm input {
    width: -webkit-fill-available;
    border: 1px solid #ddd;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 20px;
    background-color: white;
    color: black;
    }
    
    #contactForm input:focus {
    outline: none;
    }
    
    #contactForm textarea {
    width: -webkit-fill-available;
    height: 80px;
    max-width: -webkit-fill-available;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    font-size: 15px;
    }
    
    #contactForm textarea:focus {
    outline: none;
    }
    
    #contactForm button {
    padding: 12px;
    border-radius: 3px;
    background-color: #4780B6;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border: none;
    font-size: 16px;
    transition: all 0.3s ease;
    }
    
    #contactForm button:hover {
    border: 0;
    transform: translateY(-6px) translateX(-3px);
    box-shadow: 3px 6px 3px 0 black;
    }
    
    .errorMessage {
    display: none;
    color: black;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
    }
    
    .socialsContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 30px;
    }
    
    .socialsContainer a {
    margin: 10px;
    padding: 10px;
    text-decoration: none;
    color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    }
    
    .socialsContainer a:hover {
    opacity: 0.6;
    }
    
    .socialsContainer img {
    width: 40px;
    height: 40px;
    }
    
    .socialsContainer p {
    font-size: 18px;
    margin-left: 10px;
    }
    
    @media screen and (max-width: 800px) {
    
    .contact {
    margin: 90px 30px 10px 30px;
    }
    
    }
    
    @media screen and (max-width: 550px) {
        
    .contact {
    flex-direction: column;
    }
    
    .contactText {
    width: -webkit-fill-available;
    text-align: center;
    margin: 0;
    }
    
    #contactForm {
    width: -webkit-fill-available;
    }
    
    .socialsContainer {
    flex-wrap: wrap;
    }
    
    .socialsContainer img {
    width: 25px;
    height: 25px;
    }
    
    .socialsContainer p {
    font-size: 15px;
    }
        
    }