/* Importation de la police */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
}

.background {
    background-image: url('swiss.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Permet d'empiler les éléments */
    text-align: center;
}

.content {
    background-color: rgba(0, 0, 0, 0.4); /* Fond semi-transparent pour le texte */
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 10px;
    color: white;
}

h1 {
    font-size: 3rem;
    margin: 0;
}

p {
    font-size: 1.5rem;
    margin: 10px 0 5px;
}

.register-number {
    display: block;
    font-size: 1rem;
    margin-top: 10px;
    opacity: 0.8; /* Légère transparence pour différencier du texte principal */
}

/* Style pour l'image du drapeau */
img {
    margin-top: 20px; /* Ajoute de l'espace au-dessus de l'image */
    max-width: 150px; /* Limite la largeur de l'image */
    height: auto; /* Garde les proportions */
    display: block; /* Centrage avec margin auto */
}