body {
    background-image:url("../ressources/image/fondvert.jpg");;
    font-family: 'Radio Canada Big', sans-serif;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1, em {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    color: #0F1A29;
}

#logo {
    height: 100px;
}

p {
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    padding: 0 30px;
}

ul {
    text-align: left;
    padding-left: 0;
    list-style-type: none;
}
ul li {
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.btn-success {
    margin-top: 20px;
}

.popup {
    display: none;
    position: absolute;
    overflow: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    padding-top: 100px;
}

.popup-content {
    background-color: #fff;
    border: 3px solid #0F1A29;
    font-family: 'Radio Canada Big', sans-serif;
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.close {
    cursor: pointer;
    position: absolute;
    top: -10px;
    right: -10px;
    background: #DC3545;
    color: white;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.button-group .btn {
    margin-right: 10px;
}