body
{
    background-color: rgb(9, 13, 44);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 98vh;
    color: white;
}

header
{
    font-size: 40px;
    font-weight: bold;
    background-color: rgba(0, 0, 71, 0.842);
    border-style: solid;
    border-width: 2px;
    border-color: black;
    border-radius: 20px;
    padding: 10px;
    min-height: 50px;
    min-width: 98%;
}

main
{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

button
{
    font-family: Arial, Helvetica, sans-serif;
    font: 1em Arial;
    cursor: pointer;
    border-radius: 8px;
    background-color: rgb(0, 0, 134);
    font-size: 32px;

    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
}

.langBtn
{
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 8px 0;
    text-align: center;
}

.flag
{
    width: 32px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

#box
{
    background-color: rgba(0, 0, 71, 0.842);
    border-style: solid;
    border-width: 2px;
    border-color: black;
    border-radius: 20px;
    padding: 10px;
}

footer
{
    text-align: center;
    min-height: 50px;
}