* {
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
button {
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: 'slnt' 0;
}

header {
  border-bottom: 1px solid #eee;
}

header img {
  width: 200px;
  display: block;
  margin: 20px auto;
}

.data {
  padding: 0px 50px !important;
}

.data .header {
  margin-top: 100px;
}

.data .header h1 {
  font-size: 4rem;
  font-weight: 700;
}

.data .header h1:nth-of-type(2) {
  background-color: #5bcd8b;
  padding: 0px 10px;
  border-radius: 5px;
  width: max-content;
}

.data p {
  margin: 20px 0 50px 0;
  font-weight: 500;
}

.data form {
  border: 1px solid #0e0e0e;
  border-radius: 30px;
  padding: 10px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
}

.data form input {
  background-color: #faf5e2;
  border-radius: 25px;
  padding: 10px 15px;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
  width: 220px;
  flex: 1;
  min-width: 50px !important;
}

.data form input:focus {
  border-color: #ccc;
}

.data form button {
  background-color: #5694f2;
  border-radius: 20px;
  padding: 8px 20px;
  font-weight: 400;
}

.data form button:hover {
  background-color: #4885df;
}

.illustration {
  padding: 0px !important;
}

.illustration div {
  background-color: #5694f2;
  border: 1px solid #000;
  border-bottom: none;
  border-inline-end: none;
  border-radius: 25px 0 0 0;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.illustration div img {
  margin-top: -20px;
  width: 100%;
  z-index: 2;
}

.illustration div img.rotated {
  z-index: 1;
  width: 150px;
  height: 150px;
  position: absolute;
  top: 160px;
  inset-inline-start: 13%;
  animation: rotate 25s infinite linear;
}

.ticker {
  background-color: #5bcd8b;
  padding: 25px 0;
  transition: all 0.5s ease-in-out;
}

.ticker a {
  border-color: #000;
  color: #000;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker a:hover {
  background-color: #5694f2;
}

.ticker a svg {
  width: 10px;
  height: 10px;
  transition: all 0.2s ease-in-out;
}

.ticker a:hover svg {
  fill: #fff;
}

footer > div:nth-of-type(2) {
  background-color: #000;
  color: #ced1d8;
  text-align: center;
  padding: 25px;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .data {
    padding: 0px 1rem !important;
  }

  .data .header h1 {
    font-size: 3rem;
  }
}