@font-face {
    font-family: segoe1;
    src: url(segoeprint.ttf);
}

:root {
    --main-color:#eae0d5;
    --secondary-color:#22333b;
    --tetriary-color:#c6ac8f;
    --tdark-color:#8b8c89;
    --sdark-color:#0a0908;
}

* {
    font-family: segoe1;
}


html, body{
    background: var(--main-color);
    padding: 0;
    margin: 0;
    height: 100%;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.main{
    background: var(--main-color);
    display: flex;
    flex-flow: column wrap;
    justify-content: space-around;
    height: 100%;
    flex: 1;
}

.head{
    position: relative;
    height: 5vh;
    /*font-size: 12px;*/
    background: var(--tdark-color);
    /*text-align: center;*/
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.flags
{
    position: absolute;
    top: 3px;
    left: 8px;
}
.fa {
    font-size: 16px;
    width: 30px;
    height: 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    position: absolute;
    right: 8px;
}
.fa:hover {
    opacity: 0.7;
}
.fa-facebook {
    background: #3B5998;
    color: white;
}
.fa::before {
    position: relative;
    top: 7px;
    left: -1px;
}
#head_main{
    font-size:2.5vh;
}
.feet{
    background: var(--tdark-color);
    text-align: center;
    margin-top: auto;
    display :flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}
.footItem{
    padding: 1px 10px;
    line-height: 10px;
    text-align: center;
    font-size: 5px;
    text-decoration-color: var(--secondary-color);
}
.footItem.lang
{
    padding: 5px;
}
.mid {
    font-size: 15px;
    text-align: center;
}
.mid.selection {
    flex: 1;
}
.mapSection
{
    border-radius: 5px;
    margin: auto;
    text-align: center;
    width: 80%;
    align-items: center;
    padding: 10px;
    font-size: 20px;
    height: 500px;
}
.mid.map {
    flex: 3;
}
.stickyButton {
    margin-top: 10px;
    margin-bottom: 15px;
    flex:20%;
}
img {
    border-radius: 3px;
}
img:hover{
    box-shadow: 0 1px 2px 2px var(--tetriary-color);
}
button:hover{
    box-shadow: 0 1px 2px 2px var(--tetriary-color);
}
select{
    appearance: none;
    font-size: 30px;
    background-color: var(--tetriary-color);
    border-radius: 15px;
    padding: 5px;
    text-align: center;
}
button{
    font-size: 4vw;
    background-color: var(--tetriary-color);
    border-radius: 15px;
    border-color : var(--secondary-color);
    padding: 5px;
    margin: 2px;
}
.selectSection{
    margin: auto;
    text-align: center;
    width: 60%;
    align-items: center;
    padding: 10px;
}
@media (max-width: 700px) {
    .flex-container {
        flex-direction: column;
    }
    .feet{
        flex-direction: column;
    }
    /*.mapSection*/
    /*{*/
    /*    border-radius: 5px;*/
    /*    margin: auto;*/
    /*    text-align: center;*/
    /*    width: 80%;*/
    /*    align-items: center;*/
    /*    padding: 10px;*/
    /*    font-size: 20px;*/
    /*    height: 500px;*/
    /*}*/
}

#map {
    padding: 10px;
    height: 90%;
}
