body, html, header {
  margin: 0;
  padding: 0;
  top: 0;
  right: 0;
  font-family: sans-serif;
  cursor: default;
  box-sizing: content-box;
  height: 100%;
  width: 100%;
}

* {
  scroll-behavior: smooth;
}

@keyframes opacity{
    0%{opacity:0;}
    100%{opacity:1;}
}
@keyframes letter {
    0%{
        letter-spacing: 2em;
    }
    100%{
        letter-spacing: 0.25em;
    }
    
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: #ffffff;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  box-sizing: inherit;
}

.server-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.server {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.server:hover {
  transform: scale(1.05);
}

.server h2 {
  margin: 0 0 10px;
  font-size: 1.5em;
  color: #ffcc00;
}

.server p {
  margin: 10px 0;
  font-size: 1em;
}

.server code {
  font-size: 1em;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}

footer {
  background-color: rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-top: auto;
  position: relative;
  bottom: 0;
  width: 100%;
}

footer p {
  margin: 0;
  font-size: 0.9em;
  color: #ffffff;
}

.illustration {
  margin-top: 30px;
  max-width: 80%;
}
.anim{
  width: 100%;
}
@media (min-width: 768px) {
  .illustration {
      max-width: 50%;
  }
}

body a {
	font-size: 0.9em;
	color: whitesmoke;

}

body .nav-item {
  padding: 0.9em;
}

li.nav-item.active {
	border: 2px solid white;
	border-radius: 23px;
	background: white;
}

body .nav-item {
  padding: 0.1em 0.9em;
}

.navbar-brand {
  color: whitesmoke;
  font-weight: 500;
  opacity: 0;
  animation: opacity 2s ease 2s forwards,letter 2s ease 2s forwards ;
}

.nav-link {
  font-size: 1.2rem;
}

.active .nav-link {
  color: black;
}

.active:hover a {
  color: black !important;
}

.nav-item:hover a {
  color: white !important;
}

body .row .col-xl-5 {
  padding: 4.2vmin 1vmin;
}

body .row .col-xl-7 {
  color: white;
}

body .row .col-xl-5 img {
  width: 100%;
}

body .container-fluid .col-xl-7 h1 {
  font-size: 7vmin;
  font-weight: bold;
  padding: 0.1em 0em;
}

body .container-fluid .col-xl-7 p {
  padding: 2vmin 0vmin;
  font-style: italic;
}

body .container-fluid .col-xl-7 a {
  border-radius: 30px;
  font-weight: bold;
}

body .container-fluid .col-xl-7 .btn-discover {
  background-color: white;
  color: #212529;
}

body .container-fluid .col-xl-7 .btn-discover:hover {
  background-color: transparent;
  color: white;
}

body .xs-banner-image {
  position: relative;
}
.logo{
	padding-right: 0.25em;
}

#ether1 {
  position: absolute;
  width: 6%;
  top: -3%;
  right: 28%;
  -webkit-animation: bounce 1s ease-in-out 0s infinite alternate;
  animation: bounce 1s ease-in-out 0s infinite alternate;
  animation-delay: 0.3s;
}

#ether2 {
  position: absolute;
  width: 6%;
  top: 23%;
  right: 20.5%;
  -webkit-animation: bounce 1s ease-in-out 0s infinite alternate;
  animation: bounce 1s ease-in-out 0s infinite alternate;
  animation-delay: 0.7s;
}

#ether3 {
  position: absolute;
  width: 6%;
  top: 34%;
  left: 51%;
  -webkit-animation: bounce 1s ease-in-out 0s infinite alternate;
  animation: bounce 1s ease-in-out 0s infinite alternate;
}

@-webkit-keyframes bounce {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}
	to {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px)
	}
}

@keyframes bounce {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}
	to {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px)
	}
}

#bloc1 {
  position: absolute;
  width: 5%;
  bottom: 32.5%;
  left: 30.8%;
  -webkit-animation: bounceCube 1s ease-in-out 0s infinite alternate;
  animation: bounceCube 1s ease-in-out 0s infinite alternate;
  animation-delay: 0.4s;
}

#bloc2 {
  position: absolute;
  width: 5%;
  bottom: 16%;
  left: 48%;
  -webkit-animation: bounceCube 1s ease-in-out 0s infinite alternate;
  animation: bounceCube 1s ease-in-out 0s infinite alternate;
  animation-delay: 0.6s;
}

#bloc3 {
  position: absolute;
  width: 5%;
  bottom: 29.5%;
  right: 35.2%;
  -webkit-animation: bounceCube 1s ease-in-out 0s infinite alternate;
  animation: bounceCube 1s ease-in-out 0s infinite alternate;
  animation-delay: 0.1s;
}

@-webkit-keyframes bounceCube {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}
	to {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px)
	}
}

@keyframes bounceCube {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}
	to {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px)
	}
}
.big-card {
  position: absolute;
}
.container-fluid{
	width: auto !important;
    
}