main {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; 
}

.colonne_gauche {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
}

.ligne_gauche {
    width: 2px; 
    height: 487px; 
    background-color: #587099; 
    margin: 0 63px; 
  }
  
.boulle_gauche {
    width: 10px; 
    height: 10px;
    background-color: #587099; 
    border-radius: 50%; 
    margin: 0 59px; 
    margin-top: -5px; 
  }

.colonne_droite {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    bottom: 0;
    right: 0;
  }

.ligne_droite {
    width: 2px; 
    height: 487px; 
    background-color: #587099; 
    margin: 0 63px 0 0; /* Supprime la marge de gauche */
}

.boulle_droite {
    width: 10px; 
    height: 10px;
    background-color: #587099; 
    border-radius: 50%; 
    margin: 0 59px 0 0; /* Supprime la marge de gauche */
    margin-top: -5px;
}

.texte-milieu {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100vh;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.nom {
    font-size: 96px;
    font-family: 'Mukta';
    font-weight: 900;
    color: #101116;
}

.slogan {
  font-family: Nanum, sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-top: 20px;
  text-decoration: none;
  color: #101116;
  text-align: end;
}

.slogan:hover {
  text-decoration: underline;
  color: #101116;
}

