body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.container {
    text-align: center;
    padding: 2rem;
}

h1 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.leroma {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.leroma:hover {
    color: #e74c3c;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.5),
                 0 0 20px rgba(231, 76, 60, 0.3),
                 0 0 30px rgba(231, 76, 60, 0.2);
}

.flags {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.flag {
    width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.flag:hover {
    transform: scale(1.1);
}

.english {
    margin-top: 2rem;
    font-size: 2.2rem;
}

.english.leroma {
    font-size: 2.8rem;
    margin-bottom: 0;
}