:root {
    --primary-color: #f0e5d1;
    --secondary-color: #ffffff;
    --accent-color: #ffd700;
}

body {
    background-color: #f0e5d1 !important;
    color: #000000;
    font-family: 'Roboto', sans-serif;
}

p {
    font-family: 'Roboto', sans-serif;
}

.flag-container {
    width: 90px;
    height: 55px;
    transition: all 0.3s ease;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-container:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.flag-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.flag-container a {
    display: inline-block;
    width: 110%;
    height: 110%;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.flag-container:hover a {
    transform: scale(1.2);
}

@font-face {
    font-family: 'Mentra';
    src: url('MENTRA.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

.font-mentra {
    font-family: 'Mentra', sans-serif;
}
