/* style.css – все стили, которые были в index.html, плюс дополнительные */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #ff6b6b, #f06595);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    animation: fadeIn 1s ease-in-out;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

.emoji {
    font-size: 2em;
    margin-bottom: 1em;
    display: block;
}

.button {
    text-decoration: none;
    padding: 10px 25px;
    background-color: #fff;
    color: #f06595;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #f06595;
    color: #fff;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

footer {
    margin-top: 2em;
    font-size: 0.8em;
    opacity: 0.7;
}
