body {
    background-color: #000066; 
    text-align: center;
    color: white;
    font-family: 'Inter', sans-serif;
    /* background: linear-gradient(135deg, #000066, #000033); */
}

.comingSoon {
    display: flex;
    flex-direction: column; 
    justify-content: center; /* Horizontal centering */
    align-items: center;     /* Vertical centering */
    height: 90vh;           /* Fills the entire screen height */
}

.languages {
    display: flex;
    flex-direction: r; 
    justify-content: flex-end;
    align-items: flex-end; 
    gap: 8px;
    padding: 8px 12px;

}


.languages img {
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}


.languages img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}


.es {
    display: none;
}

.en {
    display: block;
}