*{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;  
    box-sizing: border-box;  
}


.form-contact{ 
   
    margin-top:5%;
    width: 100%;
    display: flex;
     align-items: center;
     justify-content: center;
    
} 

form {
    background-color:rgb(255, 148, 148);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.848);
    width: 300px;
    height: 480px;
    max-width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    color: rgb(0, 0, 0);
}

input, textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

 form button {
    font-weight: 600;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: all 1s ease-in-out;
    background-color:rgb(255 , 244, 240);
    border: 1px solid black;
}

form button:hover {
    background-color:rgb(255 , 244, 240);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.226);
     transform: scale(1.01); 
     border: none;
}

.error {
    color: red;
    font-size: 0.8em;
    margin-top: 5px;
}

@media (min-width: 600px) {
    form {
        width: 400px;
    }
}
.contact{
    height: 480px;
    width: 320px;
    max-width: 100%;
    padding: 20px;
    background-color:rgb(243, 200, 200);
    box-shadow: 0 2px 10px rgba(255, 2, 2, 0.4);
}
.contact h1{
    margin-top: 20px;
    text-align: center;
}
.contact-icon{
    padding-top: 40px;
}
.contact-icon i{
    font-size: 30px;
    padding-right: 5px;
    transition: all 1s ease-in-out;
}
.contact-icon i:hover{
    rotate: 360deg;
    font-size: 35px;
}
.contact-icon a{
    text-decoration: none;
   
}
footer{
 
    width: 100%;
    height: fit-content;
    background-color: #412222b1;
    margin-bottom: 0%;
}
.copy{
    width: 85%;
    margin: 0px auto;
    display: flex;
    flex-wrap: wrap;
   
    align-items: center;
    justify-content: space-between;
    padding: 30px;

}
.contact-info span a{
    text-decoration: none;
    color: white;
    font-size: 35px;
   
}
.contact-info span i{
    font-weight: 800;
    transition: all 1s ease-in-out;
}
.contact-info span i:hover{
   rotate: 360deg;
   color:#6600ff;
   font-size: 40px;
}

