body {
    font-family: 'Arial', sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-bottom: 20px;
    color: #333;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.icon.instagram {
    background: #E4405F;
}

.icon.telegram {
    background: #0088cc;
}

.icon.whatsapp {
    background: #25D366;
}

.icon.phone {
    background: #4CAF50;
}

.icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .container {
        width: 90%;
        padding: 20px;
    }

    .icon {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}
