
.head-enseignant {
    background-color: #395569;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .head-enseignant-slogan {
    color: antiquewhite;
  
    margin: 3rem 0;
    max-width: 600px;
  }

  .cours-enseignant {
    width: 100%;
    color: #395569;
    
  }

  .cours-enseignant-container {
    background-color: #EAEAEA;
    color: #395569;
    width: 70%;
    display: block;
    margin: auto;
    margin-bottom: 2rem;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  
  
  .cours-enseignant-title {
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    /* text-decoration: underline; */
    margin-top: 3rem;
  }
  

  
  .cours-enseignant-presentation {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    margin: 4rem 6rem;
  }
  
  .cours-enseignant-presentation-image {
    cursor: pointer;
    height: 400px;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
      rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
      rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  }
  
  .cours-enseignant-presentation-textes {
    max-width: 600px;
    font-size: 18px;
  }
  
  .cours-enseignant-presentation-textes > p > strong {
    font-weight: 600;
  }
  

  
  .nav-enseignant {
    display: flex;
    justify-content: center;
  }
  
  .nav-enseignant-accueil-link {
    height: 40px;
    width: fit-content;
   background-color: #395569;
   color: antiquewhite;
   padding: 5px;
   text-decoration: none;
   display: flex;
   align-items: center;
   font-size: 16px;
   font-weight: 600;
   border-radius: 5px;
  
   margin: 1rem;
   transition: 0.2s linear;
  }
  
  .nav-enseignant-accueil-link:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: scale(1.05);
  
  }

  #modal-img {
    border-radius: 5px;
  }
  
  @media (max-width: 821px) {

    .cours-enseignant-container {
      width: 95%;
    }
    .cours-enseignant-presentation {
      margin: 4rem 1.5rem;
      flex-direction: column;
    }
  
    .cours-enseignant-presentation-image {
      max-width: 340px;
    }
  
    
  
    .head-enseignant {
      font-size: 16px;
    }
  }
  