*{
    margin: 0;
    padding: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400&display=swap');

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    background: radial-gradient(#bd87cb, #632F70);
    background-color: #632F70;
    justify-content: center;
    align-items: center; 
}

.background {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    background-image: url('../img/8697.jpg'); 
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.container {
    text-align: center;
    z-index: 1; 
}

.logo {
    max-width: 50%; 
    margin-bottom: 20px; 
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
}
.social-icons h2 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.social-icons img {
    width: 60px; 
    margin: 0 10px; 
    transition: transform 0.3s; 
}

.social-icons img:hover {
    transform: scale(1.1); 
}

@media only screen and (max-width: 600px) {
    .logo {
        max-width: 300px;
    }
    .social-icons img {
        width: 40px;
    }
    .social-icons h2 {
        font-size: 20px;
    }
}