/* Set height to 100% for body and html to enable the background image to cover the whole page: */
body,
html {
    height: 100%;
    margin: 0;
    font-family: sans-serif;
}
a {
    color: #3763a1;
}

h1,
h2 {
    font-size: 2.25rem;
}
p {
    font-size: 1.2rem;
    line-height: 1.5;
}

.none {
    display: none;
}

.bgimg {
    background-image: url("accueil.jpg");
    height: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    color: #3763a1;
}

/* Position text in the top-left corner */
.topleft {
    position: absolute;
    top: 0;
    left: 1rem;
}

.topleft img {
    max-width: 200px;
    padding: 1rem;
}

/* Position text in the bottom-left corner */
.bottomleft {
    position: absolute;
    bottom: 0;
    left: 1rem;
}
.legals {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.5rem;
    padding: 0.5rem;
    font-size: 0.8rem;
}
/* Position text in the middle */
.middle {
    position: absolute;
    top: 30%;
    left: 20%;
    right: 20%;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    padding: 1rem;
}

/* Icon social media */
.socialmedia {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
}
.socialmedia .mediaicon {
    width: 30px;
}

/* Style the <hr> element */
hr {
    margin: auto;
    width: 40%;
}
