/*===================
  GÉNÉRAL
===================*/
/* Changement de la police par défaut et de la couleur du texte */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f4f4f4;
}

.p,
.navbar,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: ;
}

section {
  padding: 4rem 0;
}

section h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}

/*===================
    NAVBAR
  ===================*/
.navbar {
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: #2a4a86cf;
  /* Couleur verte plus claire quand on défile */
}

.dropdown-menu.scrolled {
  background-color: #2a4a86cf;
}

.navbar.scrolled .nav-link,
.navbar.transparent .nav-link {
  color: #ffffff;
  /* Changement de couleur du lien lors du défilement */
}

.navbar.transparent {
  background-color: #2a4a86;
  /* Couleur verte sombre pour la barre de navigation transparente */
}

.navbar-dark .navbar-toggler {
  border-color: transparent;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  box-shadow: none;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-dark .navbar-toggler-icon {
  /* Changement de l'image de l'icône de la barre de navigation */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand img {
  max-width: 100%;
  height: auto;
}


/* +de 890px */
@media (min-width: 601px) {
  .navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    padding-left: 1rem;
  }

  .bordure {
    text-align: none;
  }

  .bordure {
    text-align: none;
  }

  .nav-link {
    font-size: 1.3rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 5px;
    font-weight: bold;
  }

  .nav-link:hover {
    color: #f8f9fa;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .navbar-nav>.nav-item {
    margin-left: 5px;
    margin-right: 5px;
  }
}

/*===================
      ACCUEIL
    ===================*/

.container-accueil {
  margin-bottom: 200px;
}

.container-accueil .container {
  max-width: 1200px;
  margin: auto;
  background: white;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container-accueil h1,
h2 {
  color: #2564d8ea;
}

.container-accueil table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.container-accueil th,
td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.container-accueil th {
  background-color: #2564d8ea;
  color: white;
}

tr.in-progress {
  background-color: #557bd3 !important;
}

.container-accueil tr:nth-child(even) {
  background-color: #f9f9f9;
}

.container-accueil .high-priority {
  font-weight: bold;
  color: #2564d8ea;
}

.container-accueil .low-priority {
  color: #999;
}

.task-container {
  margin-bottom: 200px;
}

.task-container .container {
  max-width: 1200px;
  margin: auto;
  background: white;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.task-container h1,
h2 {
  color: #2564d8ea;
}

.task-container table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

/*===================
      Task user
    ===================*/
.task-container th,
td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.task-container th {
  background-color: #2564d8ea;
  color: white;
}

.task-container tr:nth-child(even) {
  background-color: #f9f9f9;
}

.task-container .high-priority {
  font-weight: bold;
  color: #2564d8ea;
}

.task-container .low-priority {
  color: #999;
}

/*===================
      login
    ===================*/
.page-centerlogin {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* Full width to ensure centering */
}

.text-center-welcome {
  margin-top: 200px;
  margin-bottom: 200px;
}

.login-container {
  width: 300px;
  padding: 16px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
  text-align: center;
  margin-bottom: 24px;
}

.login-container input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.login-container input[type="submit"] {
  background-color: #007BFF;
  color: white;
  font-weight: bold;
  cursor: pointer;
  /* Makes it clear the button is clickable */
}

.login-container input[type="submit"]:hover {
  background-color: #0056b3;
}

/*===================
      Register
    ===================*/
.container-register {
  margin-top: 150px;
  margin-bottom: 150px;
  margin-right: 15px;
  margin-left: 15px;
}

.container-tasks {
  margin-top: 150px;
  margin-bottom: 150px;
  margin-right: 15px;
  margin-left: 15px;
}

.form-check-input {
  vertical-align: middle;
  position: relative;
  margin-top: 0;
  margin-left: 0;

}

/*===================
      Edit Task et Task
    ===================*/
.table th,
.table td {
  vertical-align: middle;
  text-align: center;
}

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

.container.mt-5 {
  margin-top: 250px !important;
  margin-bottom: 300px;
}

.container-addtask {
  margin-top: 200px;
  margin-bottom: 200px;
}

/*===================
      logs
    ===================*/
.hidden-cell {
  display: none;
}

.container-logs {
  margin-top: 250px;
  margin-bottom: 200px;
}

.container-logs h1 {
  color: #2564d8ea;
}

.container-logs table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

.container-logs th,
.container-logs td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
}

.container-logs th {
  background-color: #2564d8ea;
  color: white;
}

.container-logs tr:nth-child(even) {
  background-color: #f9f9f9;
}

.container-logs select,
.container-logs input[type="date"],
.container-logs button {
  padding: 8px;
  margin-right: 10px;
  border: 2px solid #2564d8ea;
  border-radius: 4px;
  outline: none;
}

.container-logs button {
  background-color: #2564d8ea;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.container-logs button:hover {
  background-color: #c75146;
}

.container-logs #totalTimeContainer {
  margin-top: 20px;
  font-size: 1.1em;
  color: #2564d8ea;
}

/*===================
    Dashboard user
    ===================*/

.modal-header .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: .25em .25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: .25rem;
  opacity: .5;
}

/*===================
   Admin
  ===================*/
.back-to-admin {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  text-decoration: none;
  color: #333;
  border: none;
  background: none;
}

.back-to-admin:hover {
  text-decoration: underline;
}

.admin-welcome-text {
  text-align: right;
  margin-top: 50px;
}

/* Styles spécifiques à la page news */
.news-container {
  margin-top: 80px;
  position: relative;
  flex: 1 0 auto;
  margin-bottom: 70px;
}

.news-container h1 {
  color: #004d00;
  margin-bottom: 20px;
}

.news-container form {
  margin-bottom: 20px;
}

.news-container input[type="text"],
.news-container textarea,
.news-container button[type="submit"] {
  margin-bottom: 10px;
}

.news-item {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #fff;
}

.news-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* Nouveau style pour l'aperçu de l'image */
.image-preview-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  overflow: hidden;
}

.image-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-preview-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #f8f9fa;
  color: #6c757d;
  font-size: 14px;
}

/*===================
    Capite Admin
  ===================*/

.container-fluid {
  margin-top: 70px;
  margin-bottom: 70px;
}

.container-capite {
  position: relative;
  flex: 1 0 auto;
  margin-top: 70px;
  margin-bottom: 70px;
}

/*===================
    Capite Réservation
  ===================*/
/* Griser les jours passés */
.fc-day-past {
  background-color: #D3D3D3;
}

/* Jours disponibles en blanc */
.fc-day-future {
  background-color: #ffffff;
}

/* Jours déjà réservés en rouge */
.fc-event {
  background-color: #FF0000;
}

.content-box {
  padding: 20px;
}

.container-fluid {
  margin-top: 80px;
  margin-bottom: 70px;
}

.back-to-membre {
  color: #333;
  font-size: 22px;
}

.back-to-membre:hover {
  color: #555;
}

/*===================
    Photos
  ===================*/
.galerie-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  flex: 1;
}

.galerie-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.galerie-item {
  position: relative;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  height: 250px;
  /* ajustez à la hauteur désirée */
}

.galerie-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.galerie-image {
  width: 100%;
  height: 100%;
  /* cela remplira tout le .galerie-item */
  object-fit: cover;
  /* l'image couvre l'élément sans être déformée */
}

.galerie-title {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 0 0 5px 5px;
  /* Courbé seulement en bas */
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  /* Absolument positionné */
  bottom: 0;
  /* En bas de l'élément parent */
  left: 0;
  /* À gauche de l'élément parent */
  width: 100%;
  /* Occupe toute la largeur */
  z-index: 1;
  /* Pour s'assurer qu'il s'affiche au-dessus de l'overlay */
}

.galerie-title h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.galerie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
}

.galerie-item:hover .galerie-overlay {
  opacity: 1;
}

.galerie-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.galerie-overlay-icon {
  font-size: 40px;
  color: #fff;
  margin-bottom: 10px;
}

.hidden {
  display: none;
}

/* Style pour la fenêtre modale */
.modal-content {
  transition: transform 0.4s, opacity 0.4s;
  transform: scale(0.7);
  opacity: 0.5;
}

.modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-dialog {
  max-width: 90vw;
  margin: 1.75rem auto;
}

.modal-body {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.modal-body img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.modal-body img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.img-wrapper {
  position: relative;
  display: inline-block;
}

.btn-download {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.btn-download:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

/* Bouton de fermeture modifié */
.btn-close-photo {
  background: none;
  border: none;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  /* couleur de l'icône, à ajuster selon vos besoins */
  outline: none;
  /* pour éviter l'effet de focus autour du bouton */
}

.btn-close-photo:hover {
  color: #666;
  /* couleur de l'icône au survol, à ajuster selon vos besoins */
  border: none;
}

@media (min-width: 576px) {
  .galerie-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .galerie-images {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .galerie-images {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*===================
    Status
  ===================*/
.backstatus {
  background-color: #f4f1ea;
  color: #4c4c4c;
  padding-top: 150px;
}

.containerstatus {
  width: 80%;
  margin: auto;
  margin-bottom: 100px;
  background-color: #ffffff;
  padding: 15px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.headerstatus {
  text-align: center;
  border-bottom: 1px solid #4c4c4c;
}

.headerstatus h1 {
  margin-top: 20px;
  font-size: 2em;
}

.sectionstatus {
  margin-top: 20px;
}

.sectionstatus h2 {
  color: #bd5d38;
}

.sectionstatus a {
  color: #bd5d38;
  text-decoration: none;
}

.article-text {
  display: none;
  transition: all 0.5s;
}

.arrow {
  transition: all 0.5s;
}

.rotate {
  transform: rotate(90deg);
}

.sectionstatus a i {
  color: red;
  /* Ou la couleur que vous voulez */
}

/*===================
    Devenir membre
  ===================*/
.containerdevenirmembre {
  max-width: 1140px;
  margin: auto;
  margin-top: 50px;
  padding: 2em;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.svg-divider {
  width: 100%;
  height: 50px;
  /* you can adjust this value to increase or decrease the curve height */
}

#membre {
  padding: 2em 0;
}

#membre h2 {
  color: #333;
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.5em;
}

#membre h3 {
  color: #333;
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 1.5em;
}

#membre .columns {
  display: flex;
  justify-content: space-evenly;
  color: #666;
}

#membre .columns ul {
  padding: 0;
  list-style: none;
  text-align: center;
}

#membre .columns li {
  margin-bottom: 1em;
}

#membre .columns li i {
  display: block;
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

#membre a {
  color: #006600;
  text-decoration: none;
  padding: 0.5em 1em;
  border: 1px solid #006600;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

#membre a:hover {
  text-decoration: none;
  background-color: #006600;
  color: white;
}

#membre .horizontal {
  display: flex;
  justify-content: center;
  gap: 2em;
}

.image-section {
  position: relative;
  width: 100%;
  height: 400px;
  background: url("/abbaye/images/photos/Fête de l'Abbaye 2022 (Journée officielle)/20220911_094739.jpg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 30px;
  box-sizing: border-box;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  /* Added this line */
}

.image-section .content {
  background-color: rgba(0, 77, 0, 0.6);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.image-section h1 {
  font-size: 2em;
  color: #fff;
  margin-bottom: 1em;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.image-section p {
  font-size: 1.5em;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



.svg-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.elementor-shape-fill {
  fill: #006600;
  /* or any color you like */
}

/*===================
    Boutique
  ===================*/

.boutique-container {
  max-width: 1140px;
  margin: 100px auto 0 auto;
  /* Cela ajoute une marge en haut de 60px */
  padding: 30px 15px;
  flex: 1;
}

/* Styles pour la boutique */
.boutique-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.boutique-item {
  flex: 1 0 calc(50% - 15px);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

.boutique-item:hover {
  transform: translateY(-10px);
}

.boutique-item img {
  display: block;
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 5px;
}

.boutique-item h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.boutique-description {
  margin-bottom: 10px;
  color: #777;
}

.boutique-prix {
  font-weight: bold;
  color: #444;
  margin-bottom: 20px;
}

.boutique-button {
  padding: 10px 20px;
  background-color: #4CAF50;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.boutique-button a {
  color: #fff;
  text-decoration: none;
}

.boutique-button:hover {
  background-color: #45a049;
}

/*===================
    Calendrier
  ===================*/

.calendar {
  background-color: #efeae4;
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  /* Ajout de cette ligne */
}

.calendar h1 {
  color: #9b7653;
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #9b7653;
  padding-bottom: 0.5rem;
}

.calendar h2 {
  color: #9b7653;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.calendar .event p {
  color: #4a3e34;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.calendar table {
  width: 100%;
  border-collapse: collapse;
}

.calendar table th,
.calendar table td {
  text-align: left;
  border: 1px solid #9b7653;
}

.calendar table th {
  background-color: #9b7653;
  color: white;
}

@media only screen and (max-width: 600px) {
  .calendar {
    font-size: 0.8rem;
  }

  .calendar h1 {
    font-size: 1.6rem;
  }

  .calendar h2 {
    font-size: 1.3rem;
  }

  .calendar .event p {
    font-size: 1rem;
  }

  .calendar table th,
  .calendar table td {
    padding: 0.5rem;
  }
}

/*===================
    FOOTER
  ===================*/
.foot {
  color: #bdc3c7;
  /* Une couleur de sable clair */
}



/*===================
      MÉDIAS ACC
    ===================*/
/* Écrans jusqu'à 767px (tablettes et smartphones) */
@media (max-width: 767px) {
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    padding-left: 1rem;
  }

  .nav-link {
    font-size: 1.1rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 5px;
    font-weight: bold;
  }

  .dropdown-menu.scrolled {
    background-color: #1bb41b59;
  }

  .bordure {
    text-align: center;
  }

  .nav-link:hover {
    color: #f8f9fa;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .navbar-nav>.nav-item {
    margin-left: 5px;
    margin-right: 5px;
  }

  /* Ajustement de la taille de la police pour le titre principal */
  .accueil h1 {
    font-size: 2rem;
  }

  /* Ajustement de la taille de la police pour le texte d'introduction */
  .accueil p {
    font-size: 1.4rem;
  }

  /* Ajustement de la taille de la police pour les titres de section */
  section h2 {
    font-size: 3rem;
  }


  /* Ajustement de la taille de la police pour le texte des cartes de service */
  .service-card .card-text {
    font-size: 1.4rem;
  }

  /* Ajustement de la taille de la police pour le titre des cartes de service */
  .service-card .card-title {
    font-size: 2rem;
  }

  /* Les boutons des cartes de service reviennent à une largeur automatique */
  .service-card .btn {
    width: auto;
  }


  /* Ajustement de la taille de la police pour les cartes d'objectif */
  .objectif-card .card-title,
  .objectif-card .card-text {
    font-size: 1.4rem;
  }

  /* Ajustement de la taille de la police pour le formulaire de contact */
  #contact label,
  #contact input,
  #contact textarea,
  #contact button {
    font-size: 1.2rem;
  }

  .card-icon {
    padding: 2px;
    border-radius: 10px 2px;
    color: white;
    margin-bottom: 20px;
  }

  .card-body {
    padding: 20px;
  }

  .btn {
    border-radius: 20px;
  }

}

/* Écrans à partir de 768px (ordinateurs portables, ordinateurs de bureau) */
@media (min-width: 768px) {

  /* Ajustement de la taille de la police pour le titre principal */
  .accueil h1 {
    font-size: 5rem;
  }

  /* Ajustement de la taille de la police pour le texte d'introduction */
  .accueil p {
    font-size: 1.8rem;
  }

  /* Ajustement de la taille de la police pour les titres de section */
  section h2 {
    font-size: 3rem;
  }


  /* Ajustement de la taille de la police pour le texte des cartes de service */
  .service-card .card-text {
    font-size: 1.5rem;
  }

  /* Ajustement de la taille de la police pour le titre des cartes de service */
  .service-card .card-title {
    font-size: 2.2rem;
  }

  /* Les boutons des cartes de service reviennent à une largeur automatique */
  .service-card .btn {
    width: auto;
  }


  /* Ajustement de la taille de la police pour les cartes d'objectif */
  .objectif-card .card-title,
  .objectif-card .card-text {
    font-size: 1.5rem;
  }

  /* Ajustement de la taille de la police pour le formulaire de contact */
  #contact label,
  #contact input,
  #contact textarea,
  #contact button {
    font-size: 1.2rem;
  }
}