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

body {
  font-family: Overpass;
  text-align: center;
  font-weight: 100;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  flex-direction: column;
}

.container h1 {
  font-size: 72px;
  font-family: Celistino;
  padding: 32px;
  margin: 1px;
  transition: all 0.6s ease;
}

.container h2 {
  font-weight: lighter;
  font-size: 24px;
  padding: 100px;
}

.container h2 p {
  /*font-family: Celistino;*/
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  
}

.fill {
  width: 100%;
  height: 100vh;
}

.sticky {
  font-size: 32px !important;
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
}

.card-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 100px;
  width: 100%;
  padding: 10vh;
}

.right {
  flex-direction: row-reverse;
}

.card-img {
  width: 30%;
  height: 100%;
  object-fit: scale-down;
  border-radius: 5px;
  transition: all 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.card-info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.card-title {
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0;
}

.card-content {
  font-size: 24px;
  margin: 10px 0;
}

.card-button {
  background-color: #84b2c7;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 10px 0;
  font-size: 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.card-button:hover {
  background-color: #84b2c7d8;
}

.iban-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  gap: 30px;
}

.drive-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 30px;
}

.button {
  background-color: #84b2c7;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 10px 0;
  font-size: 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 40%;
}

.iban-phrase {
  font-size: 24px;
  padding: 20px;
}

.material-input {
  font-size: 18px;
  padding: 10px;
  margin: 10px 0;
  width: 30%;
  border: 1px solid #84b2c7;
  border-radius: 4px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.material-input:focus {
  border-color: #84b2c7;
  box-shadow: 0 0 5px rgba(132, 178, 199, 0.5);
  outline: none;
}

.arrow {
  text-align: center;
  margin: 8% 0;
  position: fixed;
  bottom: 0;
  right: 10%;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

.bounce img {
  width: 30px;
}

@font-face {
  font-family: "MiriamCL";
  src: url("./fonts/MiriamMonoCLM-Book.ttf");
}

@font-face {
  font-family: "Celistino";
  src: url("./fonts/Celistino.ttf");
}

@font-face {
  font-family: "Overpass";
  src: url("./fonts/OverpassMono-VariableFont_wght.ttf");
}

@media screen and (max-width: 600px) {
  .container h2 {
    padding: 50px;
  }
  .card-container {
    flex-direction: column;
    gap: 10px;
    padding: 5vh;
  }

  .card-img {
    width: 100%;
  }

  .card-info {
    gap: 5px;
  }

  .iban-button {
    width: 100%;
  }

.drive-button {
    width: 80%;
  }
  .material-input {
    width: 100%;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}