@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-thumb {
    width: 5px;
    background-color: rgb(177, 173, 173);
    border-radius: 6px;
}

body {
    background-color: #313B72;
    background: 
        linear-gradient(rgba(190, 211, 195, 0.8), rgba(190, 211, 195, 0.8)), /* Couleur avec opacité */
        url('fond.jpg'); /* Image de fond */
    background-size: cover; /* Ajuste l'image pour couvrir tout l'écran */
    background-position: center; /* Centre l'image */
    background-repeat: repeat; /* Empêche la répétition de l'image */
}

a {
    text-decoration: none;
    color: #333333;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

ul {
    list-style: none;
    display: flex;
    margin-left: auto; /* Éloigne le menu du logo */
}

/* Style pour le lien "Accueil" */
ul li a {
    font-size: 16px; /* Augmente la taille du texte */
    font-weight: bold; /* Rend le texte plus épais */
    letter-spacing: 3px; /* Ajoute un espacement entre les lettres */
}

/* Positionner le logo en haut à gauche */
header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ajoute de l'espace entre le logo et le menu */
    padding: 10px 20px;
    
}

.logo img {
    height: 100px; /* Augmente la hauteur du logo */
    width: auto; /* Garde les proportions */
    margin-right: 20px; /* Conserve l'espacement avec les autres éléments */
}

li {
    margin: 0 10px;
}

li a {
    text-transform: uppercase;
    color: #000;
    font-size: 12px;
    font-weight: 600;
}

/* Remonter et espacer les mots "Le Robot OTTO" */
section {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 200px);
    line-height: 150px;
}

.italique_text {
    font-family: 'Allura', cursive;
    font-size: 180px;
    margin-bottom: 20px;
}

.italique_text.first {
    margin-bottom: 40px;
}

.normal_text {
    font-size: 180px;
    text-transform: uppercase;
    letter-spacing: -10px;
    font-weight: bolder;
    margin-bottom: 20px;
}

/* Espacer "Présenté par le Groupe 4" vers le bas */
h4 {
    font-size: 20px;
    font-style: italic;
    letter-spacing: 3px;
    font-weight: 100;
    text-transform: capitalize;
    margin-top: 50px;
    text-align: center;
}

.image-otto-1,
.image-otto-2 {
    position: absolute;
    height: 300px;
    width: 300px;
    object-fit: cover;
}

.image-otto-1 {
    bottom: 20px;
    right: 30px;
    z-index: 1;
}

.image-otto-2 {
    bottom: 20px;
    left: 30px;
    z-index: 10;
}