@import url('https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "SUSE", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; /* Poids par défaut */
    font-style: normal;
    color: white;
    background-image: url('background.jpg'); /* Remplace 'background.jpg' par le chemin de ton image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    position: relative;
    padding: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "SUSE", sans-serif; /* Application de la police */
    font-weight: 400; /* Poids standard */
}

.logo {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.main-title {
    margin-top: 20px;
    font-size: 5rem;
    font-family: "SUSE", sans-serif; /* Application de la police */
    font-weight: 700; /* Poids pour le titre */
    background: linear-gradient(45deg, #ff4e50, #f9d423);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

nav {
    width: 100%;
    margin-top: 20px;
    font-family: "SUSE", sans-serif; /* Application de la police */
    font-weight: 400; /* Poids standard pour la navigation */
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.menu > li {
    display: inline-block;
}

.menu > li > a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    font-family: "SUSE", sans-serif; /* Application de la police */
    font-weight: 400; /* Poids standard pour les liens de menu */
}

.menu > li > a:hover {
    color: #ff4e50;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    font-family: "SUSE", sans-serif; /* Application de la police */
    font-weight: 400; /* Poids standard pour le pied de page */
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-family: "SUSE", sans-serif; /* Application de la police */
    font-weight: 400; /* Poids standard pour les liens dans le pied de page */
}

footer a:hover {
    color: #ff4e50;
}