body {
    background-color: #1e1e1e;
    color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.contact-container {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.contact-container h1 {
    margin-bottom: 20px;
}

.contact-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
    color: #ffffff;
    background-color: #555555;
    font-size: 1.2em;
    position: relative;
    overflow: hidden;
    transition: background-color 0.7s ease, color 0.7s ease;
}

.contact-container a.telegram {
    background-color: #0088cc92;
}

.contact-container a.instagram {
    background-color: #dd2a7bd4;
}

.contact-container a.mail {
    background-color: #7b1010d5
}

.contact-container a.youtube {
    background-color: #bb001cb8;
}

.contact-container a.telegram:hover {
    background-color: #0088cc;
}

.contact-container a.instagram:hover {
    background-color: #dd2a7b;
}

.contact-container a.mail:hover {
    background-color: #8c0e0e;
}

.contact-container a.youtube:hover {
    background-color: #bb001c;
}

.contact-container img {
    margin-right: 10px;
    width: 30px;
    height: 30px;
}
