/* Обнуление стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Основные стили */
body {
    font-family: "Roboto Condensed", sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    background-image: url(../img/photo1720191757.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.contacts {
    text-align: center;
    background-color: rgb(63, 63, 63);
    padding: 100px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contacts h1 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #ffffff;
}

.contact-item {
    margin: 10px 0;
}

.contact-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.6em;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background 0.3s, border-color 0.3s;
    width: 400px;
    justify-content: center;
}

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

.contact-link:hover {

    border-color: #000000;
  
}

/* Индивидуальные стили для разных контактов */
.whatsapp {
    color: #ffffff;
}

.email {
    color: #ffffff;
}

.telegram {
    color: #ffffff;
}


@media screen and (max-width: 768px) {
    .contact-link{
        max-width: 300px;
    }

    .contacts{
        padding: 50px;
    }
}


@media screen and (max-width: 425px) {
    .contact-link{
        max-width: 250px;
        font-size: 16px;
    }
    .contact-link img{
        max-width: 20px;
        max-height: 20px;
    }

    .contacts{
        padding: 40px;
    }

    h1{
        font-size: 24px !important;
    }
}