/* Style global */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Roboto Mono', monospace;
  font-size: 4vmin;
  min-height: 100vh;
  display: grid;
  overflow: hidden;
  place-items: center;
  background: linear-gradient(-45deg, #c4d2ef, #dfe6f6);
}

/* Style du bouton navbar */
.navbar {
  position: fixed;
  top: 20px;
  right: 20px;
  display: inline-block;
  cursor: pointer;
  padding: 10px;
  background-color: #333;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10; /* Assure que le bouton est visible au-dessus du reste */
}

.navbar .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
}

/* Style du menu de navigation */
.nav-menu {
  display: none;
  flex-direction: column;
  background-color: #333;
  position: fixed;
  top: 80px; /* Position du menu juste en dessous du bouton */
  right: 20px;
  width: 200px;
  padding: 10px;
  border-radius: 5px;
  z-index: 9; /* Juste en dessous du bouton de navigation */
  font-size : 20px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  padding: 10px 0;
  display: block;
}

.nav-menu a:hover {
  background-color: #555;
}

/* Quand le menu est ouvert */
.nav-menu.open {
  display: flex;
}

.hr,
.min,
.sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4vmin;
  grid-row: 1/2;
  align-items: start;
}
.number {
  user-select: none;
  width: 8vmin;
  height: 8vmin;
  display: grid;
  place-items: center;
  color: #f9fbfd;
  transition: all 500ms 100ms ease;
  border-radius: 50%;
}
.number.pop {
  color: #3e6ccb;
  font-weight: bold;
  transform: scale(1.3);
  background-color: #dfe6f6;
  box-shadow: -1vmin -1vmin 2vmin -0.5vmin #f9fbfd, 1vmin 1vmin 2vmin #a9bee8;
}
.strip {
  transition: transform 500ms ease-in-out;
  border-radius: 1.333333333333333vmin;
  background-color: #dfe6f6;
  box-shadow: -1vmin -1vmin 2vmin -0.5vmin #f9fbfd, 1vmin 1vmin 2vmin #a9bee8;
}
.clock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 8vmin;
  height: 4vmin;
  position: relative;
  padding: 0 4vmin;
}
.par {
  position: center; 
  margin-left: 30px;
  margin-right: 30px;
  font-size : 30px;
} 
.FootPartners{
  margin-bottom: 20px;
}