.modal{
  width: 100vw;
  height: 100vh;
  z-index: 9;
  backdrop-filter: blur(4px);
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card{
  width: 600px;
  background-color: var(--white-noir);
  color: var(--black-noir);
  border-radius: 24px 0px;
  display: flex;
  flex-direction: column;
}

.modal-header{
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 40px;
  justify-content: center;
  align-items: center;
  font-family: MontserratMedium;
}

.modal-title{
  width: 95%;
  text-align: center;
}

.modal-close-btt{
  width: 5%;
}

.modal-close-btt button:hover{
  cursor: pointer;
}

.modal-close-btt button{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgb(171, 0, 0);
  border-color: transparent;
}

.modal p{
  font-family: MontserratMedium;
  font-size: 0.9rem;
  padding: 12px;
  text-align: center;
}


.off{
  display: none;
}

@media screen and (max-width: 1300px){
  .card{
    width: 80vw;
  }
  .modal-title{
    width: fit-content;
  }
  .modal-close-btt{
    width: fit-content;
    margin: 4px;
  }
}