﻿.content-container{
    display: flex;
    flex-direction: column;
}
.logo-container{
    margin-top: 5%;
    margin-bottom: 3%;
    display: flex;
    justify-content: center;
}
.logo{
    max-height: 35%;
}
.flag-picker-container{
    display: flex;
    flex-direction: column;
}
.picker-text{
    font-size: 1.5em;
    margin-bottom: 1em;
    color: #1D768B;
    font-family: Helvetica, sans-serif;
}
.flags-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
}
a{
    color: black;
    text-decoration: none;
}
span{
    text-align: center;
}
.flag-item{
    min-width: 200px;
    width: 10vw;
    margin: 3vw;
    display: flex;
    flex-direction: column;
    font-size: 1.5em;
    font-weight: bold;
    font-family: Helvetica, sans-serif;
}
.flag{
    width: 10vw;
    height: 6vw;
    min-width: 200px;
    min-height: 120px;
    margin-bottom: 0.5em;
    transition: box-shadow 0.2s;
}
.flag:hover{
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.world-flag{
    background-color: #4D8CDE;
}

@media only screen and (max-width: 768px)
{
    .logo{
        width: 100vw;
        height: 40vw;
    }
    .flags-container{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto;
    }
    .flag-item{
        min-width: 150px;
        margin: 3vw;
        display: flex;
        flex-direction: column;
        font-size: 1.2em;
        font-weight: 500;
        cursor: pointer;
    }
    .flag{
        min-width: 150px;
        min-height: 80px;
        margin-bottom: 0.5em;
    }
}