@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body{
    background-color: #F4F5EF;
    color: #1A1717;
    font-family: "Raleway", sans-serif;
}

.logo{
    width: 10vw;
    margin-left: 5%;
}

.container{
    width: 90%;
    height: 80vh;
    display: flex;
    flex-direction: row;
    margin: auto;
    align-items: center;
    justify-content: space-between;
}

.text{
    width: 45%;
}

.titre{
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 2vh;
    line-height: 75px;
}

.info{
    font-size: 26px;
}

.gif{
    width: 40%;
}

@media only screen and (max-width: 768px) {

.logo{
    width: 20vw;
}

.container{
    flex-direction: column;
    justify-content: center;
}

.text{
    width: 100%;
    text-align: center;
}

.titre{
    font-size: 42px;
    line-height: 49px;
}

.info{
    font-size: 16px;
}

.gif{
    width: 100%;
}
}