body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Montserrat", sans-serif;
    font-display: swap;
    font-size: 1em;
}

.main-home {

}

h1 {
    text-align: center;
    font-size: 3em;
    font-weight: 500;
    margin: 1em;
}

/*****************************************************  les boutons de l'appli *****************************************************/

.title_public {
    text-align: center;
    margin-bottom: 1em;
}

.btn_link {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.btn_link .btn_1_ext {
    background: rgba(14, 66, 84, 1);
}

.btn_link .btn_1,
.btn_link .btn_1 button {
    background: #003399;
}

.btn_link .btn_1,
.btn_link .btn_1 button,
.btn_link .btn_1_ext {
    margin-bottom: 0.5em;
    width: auto;
    color: white;
    cursor: pointer;
    position: relative;
    border: solid white 1px;
    z-index: 1;
    transition: all 0.5s ease-in-out;
    padding: 0;
}

.btn_link .btn_1 a,
.btn_link .btn_1 button,
.btn_link .btn_1_ext a {
    font-size: 1.2em;
    font-weight: bold; /* Assurez-vous de définir la bonne valeur de 'font-weight' ici */
    position: relative;
    display: block;
    padding: 0.5em;
    height: 100%;
    transition: 0.5s ease-in-out;
    min-width: 7em;
}

.btn_link .btn_1 a:hover,
.btn_link .btn_1 button:hover,
.btn_link .btn_1_ext a:hover {
    color: black;
}

.btn_link .btn_1 a:hover:before,
.btn_link .btn_1 button:hover:before,
.btn_link .btn_1_ext a:hover:before {
    height: 100%;
    top: 0;
    background: black;
}

.btn_link .btn_1 a:hover:after,
.btn_link .btn_1 button:hover:after,
.btn_link .btn_1_ext a:hover:after {
    width: 100%;
    left: 0;
    background: black;
}

.btn_link .btn_1 a:before,
.btn_link .btn_1 button:hover:before,
.btn_link .btn_1_ext a:before,
.btn_link .btn_1 a:after,
.btn_link .btn_1 button:hover:after,
.btn_link .btn_1_ext a:after {
    position: absolute;
    content: "";
    background: #007FFF;
    transition: all 0.5s ease-in-out;
}

.btn_link .btn_1 a:before,
.btn_link .btn_1 button:hover:before,
.btn_link .btn_1_ext a:before {
    left: 0;
    top: 50%;
    width: 2px;
    height: 0%;
}

.btn_link .btn_1 a:after,
.btn_link .btn_1 button:hover:after,
.btn_link .btn_1_ext a:after {
    top: 0;
    left: 50%;
    height: 2px;
    width: 0%;
}

.btn_link .btn_1:before,
.btn_link .btn_1 button:before,
.btn_link .btn_1_ext:before,
.btn_link .btn_1:after,
.btn_link .btn_1 button:after,
.btn_link .btn_1_ext:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background: black;
    transition: all 0.5s ease-in-out;
}

.btn_link .btn_1:before,
.btn_link .btn_1_ext:before,
.btn_link .btn_1 button:before {
    height: 0%;
    width: 2px;
    top: 50%;
}

.btn_link .btn_1:after,
.btn_link .btn_1_ext:after,
.btn_link .btn_1 button:after {
    width: 0%;
    height: 2px;
    left: 50%;
}

.btn_link .btn_1:hover:before,
.btn_link .btn_1_ext:hover:before,
.btn_link .btn_1 button:hover:before {
    height: 100%;
    top: 0%;
    background: black;
}

.btn_link .btn_1:hover:after,
.btn_link .btn_1_ext:hover:after,
.btn_link .btn_1 button:hover:after {
    width: 100%;
    left: 0%;
    background: black;
}

.btn_link .btn_1:hover,
.btn_link .btn_1_ext:hover,
.btn_link .btn_1 button:hover {
    background: transparent;
    border-color: transparent;
}

.btn_link .btn_1:focus,
.btn_link .btn_1_ext:focus,
.btn_link .btn_1 button:focus {
    outline: none;
}

/*********************  Barre de naviagtion ************************/

.logo_general {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img_logo {
    width: 200px;
    margin: 1em;
}

/* .navigation {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin-top: 1em;
  margin-bottom: 1em;
} */

.navigation_list {
    font-size: 1.3em;
    font-weight: 500;
    color: #003399;
}

.navigation_list:hover {
    color: black;
}

.navigation_list .active {
    color: black;
}

.user_login {
    width: 12em;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.username {
    margin-bottom: 0.5em;
    font-size: 1.2em;
    font-weight: 500;
}
