/* Общие стили */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-style: italic; /* Делаем шрифт курсивным */
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
    transform: skew(-10deg); /* Наклон текста */
    display: inline-block;
}

.message {
    font-size: 1.5rem;
    margin-bottom: 40px;
    animation: slideUp 1.5s ease-in-out;
}

.contact {
    font-size: 1.2rem;
    margin-bottom: 20px;
    animation: fadeIn 3s ease-in-out;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 4s ease-in-out;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fff;
    color: #6a11cb;
}

/* Анимация загрузки */
.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #6a11cb;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: 0 auto 40px;
}

/* Анимации */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}