/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    color: #333;
    text-align: center;
    padding: 20px;
}

h1 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-link {
            display: block !important;
            margin-top: 10px !important;
            font-size: 0.9em !important;
            color: gray !important;
            text-decoration: none !important;
        }
.contact-link:hover {
    text-decoration: underline !important;
}

a {
    text-decoration: none;
}

button {
    font-size: 1rem;
    padding: 10px 20px;
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #b7b7b7;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: #007bff;
    color: #ffffff;
    border-color: #007bff;
}


/* Адаптивность для мобильных устройств */
@media (max-width: 100px) {
    h1 {
        font-size: 1.5rem;
    }

    button {
        width: 100%;
        max-width: 300px;
    }
}
