/*Load my own fonts*/
/*
@font-face {
    font-family: slogan-font;
    src: url(../fonts/shexweeknd/Montez-Regular.ttf);
}*/

p {
  /* font-size: calc(0.25vw + 0.25vh + 1.5vmin); */
  font-size: 1.2rem;
  font-weight: 600;
}

h2 {
  font-size: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.separator {
  width: 45%;
  opacity: 0.7;
  border: 2px solid black;
  height: 0px;
  align-self: center;
  transition: width 1s;
}

/*Background color*/
.bg-gradient {
  background: linear-gradient(
    to bottom right,
    #ffffff,
    #ffffff,
    #ffffff,
    #c9defd,
    #ffebb4,
    #ffffff
  );
}

/* Boutttons */
/*<button class="button-5" role="button">Button 5</button> */

.button-5 {
  align-items: center;
  justify-content: center;
  background-clip: padding-box;
  background-color: #0d6efd;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 32px;
  padding: calc(0.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: 150px;
}

.button-5:hover,
.button-5:focus {
  background-color: #fbc532;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.button-5:hover {
  transform: translateY(-1px);
}

.button-5:active {
  background-color: #c85000;
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  transform: translateY(0);
}

/* boutton de deconnexion */
.button-warning {
  align-items: center;
  justify-content: center;
  background-clip: padding-box;
  background-color: #dc3545;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 32px;
  padding: calc(0.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: 150px;
}

.button-warning:hover,
.button-warning:focus {
  background-color: #ffff;
  color: #dc3545;
  outline: 1px solid #dc3545 !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.button-warning:hover {
  transform: translateY(-1px);
}

.button-warning:active {
  background-color: #dc3545;
  outline: 1px solid #dc3545 !important;
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  transform: translateY(0);
}

/*Animation wave*/
.waviy {
  position: relative;
}

.waviy span {
  position: relative;
  display: inline-block;
  font-size: 70px;
  font-weight: bold;
  font-family: Arial, Baskerville, monospace;
  color: #000000;
  text-transform: uppercase;
  animation: flip 1s;
  animation-delay: calc(0.2s * var(--i));
}

@keyframes flip {
  0%,
  80% {
    transform: rotateY(360deg);
  }
}

/*animation*/
.slogan {
  font-family: "Montserrat Medium";
  max-width: 40ch;
  text-align: center;
  transform: scale(0.94);
  animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
@keyframes scale {
  100% {
    transform: scale(1);
  }
}

/*AOS animations*/
/* [data-aos="reveal-from-left"] {
  transform: translateX(-100%);
  opacity: 0;
  transition-property: transform, opacity;
  &.aos-animate {
    transform: translateX(0);
    opacity: 1;
  }
}

[data-aos="reveal-from-right"] {
  transform: translateX(100%);
  opacity: 0;
  transition-property: transform, opacity;
  &.aos-animate {
    transform: translateX(0);
    opacity: 1;
  }
} */

/*Responsive settings*/
@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 980px) {
}

@media screen and (max-width: 736px) {
}

@media screen and (max-width: 430px) {
}
