@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Smooch+Sans:wght@100..900&display=swap');



/* Общие стили */
body {
    font-family: "Russo One", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

/* Контейнер */
.container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    width: 90%;
}

/* Заголовок */
h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Кнопки */
.btn {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px;
    margin: 5px 0;
    border-radius: 5px;
    font-size: 16px;
    font-weight: lighter;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #0077b5;
}

/* Адаптация под мобильные устройства */
@media (max-width: 480px) {
    .container {
        width: 90%;
        max-width: 260px;
    }
    
    h2 {
        font-size: 16px;
    }
    
    .btn {
        font-size: 14px;
        padding: 10px;
    }
}