/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background: linear-gradient(135deg, #61300a, #492104); /* fundo com tons de azul */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Cabeçalho */
header {
    padding: 2rem;
    text-align: center;
    z-index: 999;
}

.logo {
    max-width: 400px;
    animation: fadeIn 1s ease-in-out;
}

/* Animação de fadeIn */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Conteúdo principal */
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-grow: 1;
    z-index: 999;
}

.flag-container {
    display: flex;
    gap: 2rem;
}

.flag-link {
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.flag-link img {
    width: 100px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

.flag-link:hover {
    transform: scale(1.1);
}

.flag-link:hover img {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

/* Rodapé */
footer {
    padding: 1rem;
    text-align: center;
    color: #fff;
    font-size: 0.8rem;
    opacity: 0.8;
}
/* Ajusta o tamanho e aplica efeito hover */
.flag {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.flag:hover {
    transform: scale(1.1);
}

/* Estilo da bandeira de Marrocos */
.morocco-flag rect {
    fill: #C1272D;
}

.morocco-flag polygon {
    fill: #006233;
}

/* Estilo da bandeira das Canárias */
.canary-flag .blue {
    fill: #003893;
}

.canary-flag .white {
    fill: #FFFFFF;
}

.canary-flag .yellow {
    fill: #FFD700;
}
#container {
    position: fixed;
    touch-action: none;
  }