* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  position: relative;
  height: 100%;
}

body {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

.button-next {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-prev {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-selector {
  text-align: center;
  position: fixed;
  bottom: 5%;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.serveur-selector {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;

  .serveur-name {
    color: #ffffff;
    text-align: center;
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

.action-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.footer {
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8vh;
  z-index: 50;
}

/* CSS */
.button-goto {
  appearance: none;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 5px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: Roobert, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  outline: none;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 7rem;
  height: 2rem;
  will-change: transform;
}

.button-goto:disabled {
  pointer-events: none;
}

.button-goto:hover {
  color: #fff;
  border: none;
  background-color: rgb(38, 221, 72);
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-goto:active {
  box-shadow: none;
  transform: translateY(0);
}

.logo-container {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 10px;
  background-color: transparent; /* Fond du conteneur */
}

.logo-container img {
  max-height: 50px; /* Taille maximale du logo */
  max-width: 100%; /* Le logo s'ajustera automatiquement à la largeur du conteneur */
}
