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

/* Styles pour le conteneur principal */
body {
  display: flex;
  font-family: helvetica, arial, sans-serif;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
}

/* Styles pour le logo Asulya */

@keyframes tipsy {
  0 {
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) translateY(-50%) rotate(360deg);
  }
}
h1 {
  font-weight: bold;
  color: #000;
  font-size: 80px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: -3px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

h1:before,
h1:after {
  content: '';
  padding: .9em .4em;
  position: absolute;
  left: 50%;
  width: 100%;
  top: 50%;
  display: block;
  border: 10px solid red;
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
  animation: 10s infinite alternate ease-in-out tipsy;
}

h1:before {
  border-color: #d9524a #d9524a rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  z-index: -1;
}

h1:after {
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #d9524a #d9524a;
}

/* Styles pour le slogan */
p {
  font-size: 1.2rem;
  margin-top: 100px;
  text-transform: uppercase;
}


/* Styles pour le responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 4rem;
    min-width: 200px;
    text-align: center;
  }

  p {
    font-size: 1rem;
    margin-top: 75px;
  }
}
