/* Fichier : style.css */

*{
    font-family: "Questrial", sans-serif; 
    padding: 0;   
    margin: 0;
}
body {
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    margin: 0;
    font-family: "Questrial", sans-serif;
    font-weight: lighter;
    font-style: normal;
    padding: 20px;
    aspect-ratio: 4 / 3;
    height: 100vh;
    max-width: 133.33vh;
    max-width: 1800px;
    padding-left: 50px;
    margin: auto;
    overflow: hidden;
}

.header {
    padding: 20px;
}

.logo {
    width: 250px;
    display: block;
    margin-top: 50px;
}

.title {
    text-align: left;
    color: white;
    font-size: 3.5em;
    margin-top: 80px;
    max-width: 750px;
}
.language-buttons {
    position: absolute;
    bottom: 20px;
    left: 20px;
    
}

.buttons {
    display: flex;
    gap: 30px;
    margin-top: 150px;
   
}

.buttons button {
    background: white;
    border: none;
    padding: 15px 25px;
    font-size: 3em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    transition: transform 0.2s, background-color 0.2s;
    background: white;
    border: none;
    padding: 10px 15px;
    font-size: 3em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;

}

.buttons .icon {
    width: 70px;
    height: 70px;

}

.buttons button:hover {
    background: #e0e0e0;
    transform: scale(1.05);
    
    background: #f0f0f0;

}
