body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.contact-container {
    padding: 80px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    background-color: #b68ec2;
}
h1 {
    margin-bottom: 20px;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}
.social-icons a {
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.social-icons a:hover{
    transition: ease 0.5s;
    transform: scale(1.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    opacity: 0.7;
}
.social-icons img {
    width: 40px;
    height: 40px;
}
.wide img{
    width: 180px;
}