body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 0;
}

header {
    margin-top: 5em;
    text-align: center;
}

.logo {
    height: 20em;
}

.button-container-wrapper {
    width: calc(100% - 8em); /* 100% width minus 4em margin on each side */
}

.button-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

button {
    flex: 1;
    margin: 0 1em;
    padding: 3em 0;
    font-size: 16px;
    cursor: pointer;
    background-color: white;
    border: none;
    color: grey;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 10px;
}

button:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.button-container button:first-child {
    margin-left: 0;
}

.button-container button:last-child {
    margin-right: 0;
}

footer {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 1em 0;
    margin-bottom: 2em;
}

.flags-container {
    display: flex;
    justify-content: center;
    gap: 1em;
}

.flag {
    height: 1em;
    width: 1.5em;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 3px;
    box-shadow: 2px 2px 5px rgba(0.2, 0.2, 0.2, 0.2);
}

.flag:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hidden {
    display: none;
}

.plus {
    flex: 1;
    margin: 0 1em;
    padding: 10px 0;
    font-size: 0.75em;
    cursor: pointer;
    background-color: white;
    border: none;
    color: #666666;
    transition: all 0.3s ease;
    border-radius: 10px;
    text-align: center;
    margin-top: 1em;
    margin-bottom: 1em;
}

.plus:hover {
    color: #c59b74;
    font-weight: bold;
}

