/*.centered {
  position: absolute;
  top: 30%;
  left: 10%;
  margin: -25px 0 0 -25px;
}*/

/* styles.css */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

.language-selection {
    text-align: center;
}

.language-selection h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.flags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor:pointer;
}

.flag {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

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

.flag-item p {
    margin-top: 10px;
    font-size: 1em;
    color: #333;
}
