@font-face {
  font-family: 'Onest';
  src: url('/fonts/Onest.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Onest';
  src: url('/fonts/Onest-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

body {
  font-family: 'Onest';
  margin: 0;
  padding: 0;
  background-color: #202020;
  color: #cfcfcf;
  overflow-x: hidden;
  background: radial-gradient(circle, #343434, #1c1c1c);
  background-size: 150% 150%;
  animation: radial-gradient-animation 10s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

@keyframes radial-gradient-animation {
  0% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 80% 20%;
  }
  50% {
    background-position: 20% 80%;
  }
  75% {
    background-position: 80% 80%;
  }
  100% {
    background-position: 50% 50%;
  }
}


h1, h2 {
  text-align: center;
  color: white;
}
h3 {
  color: white;
}
label, input, textarea {
  width: 100%;
}
input[type="text"], input[type="email"], textarea {
  border: 2px solid #ccc;
  border-radius: .5rem;
  background: #fff;
  color: white;
  background: none;
  padding: .5rem .75rem;
}

button {
  padding: .5rem;
  border-radius: .5rem;
  border: none;
  font-weight: bold;
  cursor: pointer;
  background: white;
  color: black;
}

ul li {
  margin-bottom: 10px; /* Adjust the value to your preference */
}

strong {
  color: white;
}

.icon {
  width: 1rem;
  filter: invert();
}

 /* UTIL */
.center {
  display: flex;
  justify-content: center;
}

.center-v {
  display: flex;
  align-items: center;
}
/* UTIL */
