*{
    margin: 0;
    padding: 0;
}
body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}
.container, .column{
    display: flex;
}
.title{
    height: 30vh;
}
.title img{
    height: 100%;
    width: 50%;
    object-fit: contain;
    min-width: 500px;
}
.title img:last-child{
    margin-top: 7vh;
    height: 10vh;
}
.center{
    margin-right: 50vw;
    justify-content: center;
}
.column{
    flex-direction: column;
    align-items: center;
    height: 60vh;
    justify-content: center;
}
figure{
    height: 25vh;    
}
figure img{
    height: 100%;
}
.contact{
    flex-direction: column;
    margin-bottom: 50px;
    margin-left: 50px;
}
a{
    background-color: #5a91aa;
    padding: 10px 20px;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    font-weight: 800;
    font-size: x-large;
    border: #5a91aa 1px solid;
}
a:hover{
    color: #5a91aa;
    background-color: white;
}
.column a:last-of-type{
    margin-top: 5vh;
}
.free{
    color: #da2a67;
    font-size: 50px;
    font-weight: 700;
    font-style: italic;
}
@media (min-width: 0px) and (max-width: 880px){
    body{
        background: none !important;
    }
    .center{
        margin-right: 0;
    }
    .title{
        align-items: center;
    }
    .title img{
        min-width: 100%;
    }
    .contact{
        margin-left: 0;
    }
}
@media (min-width: 881px){
    body{
        background-image: url("../images/home/france.png");
    }
}
@media (max-width: 1000px){
    .title{
        flex-direction: column;
        margin-bottom: 30px;
    }
    .title img{
        height: 50%;
    }
    .title img:first-child{
        height: 75%;
    }
    .title img:last-child{
        margin-top: 0;
    }
}
@media (max-width: 460px){
    .title{
        width: 100%;
        height: 50vh;
        flex-direction: column;
    }
    .title img{
        height: 100%;
    }
    .title img:last-child{
        margin-top: 0;
    }
}
