*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
.contact{
    min-height: 100vh;
    background-color: #feebf0;
    padding: 50px;
    text-align: center;
}
.container{
    max-width: 800px;
    margin: 0 auto;
}
.contain h2{
    font-size: 36px;
    margin-bottom: 40px;
    color: rgba(14, 14, 14, 0.918);
}
.contact-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}
.contact-form{
    text-align: left;
}
.contact-form h3{
    font-size: 24px;
    margin-bottom: 20px;
    color: black;
}
.form-group{
    margin-bottom: 20px;
}
input, textarea{
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background-color: rgb(245, 213, 217);
    color: black;
}
input: focus,
textarea: focus{
outline:none;
box-shadow: 0 0 8px #bbb;
}
button{
    display: inline-block;
    padding: 12px 24px;
    background-color: rgb(26, 2, 16);
    color: rgb(254, 140, 212);
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}
button:hover{
background-color:rgb(56, 28, 37);
}
.contact-info{
    text-align: left;
}
.contact-info h3{
font-size: 24px;
margin-bottom: 20px;
color: #333;
}
.contact-info p{
    margin-bottom: 10px;
    color: #555;
}
.contact-info i{
    color: #333;
    margin-right: 10px;
}
 .container{
    padding: 20px;
 }
 .contact-wrapper{
    grid-template-columns: 1fr;
 }