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

body {
  background-color: #e3f2fd;
  min-height: 100vh;
  width: 100%;
}

.home {
  min-height: 80vh;
  display: flex;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
}

.product_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  gap: 2rem;
  padding: 2rem;
  border-bottom: 2px solid #0d47a1;
}

.contact {
  min-height: 80vh;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.contact div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  font-size: 1.25rem;
}

.contact button {
  background-color: #0d47a1;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1.25rem;
}

.contact input {
  border-bottom: 2px solid #000;
  background-color: #fff;
  font-size: 1.25rem;
}

.message textarea {
  height: 10rem;
  width: 100%;
  font-size: 1.25rem;
}
@keyframes typing {
  0% {
    width: 0;
  }
  20% {
    width: 0;
  }
  40% {
    width: 0;
  }
  60% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.home_text h1 {
  overflow: hidden;
  white-space: nowrap;
  border-right: 0.15em solid #0d47a1; /* Blinking cursor */
  animation: typing 2.5s steps(40, end), blink-caret 0.75s step-end infinite;
}
.home_text div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
}
.home_text div a {
  overflow: hidden;
  white-space: nowrap;
  border-right: 0.15em solid #0d47a1; /* Blinking cursor */
  animation: typing 2.5s steps(40, end), blinking 0.75s step-end;
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #0d47a1;
  }
}

@keyframes blinking {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: #0d47a1;
  }
  100% {
    border-color: transparent;
  }
}

.highlight {
  color: #90caf9;
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: space-evenly;
  align-items: center;
  font-size: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
}

.home_text div a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
  padding: 0.5rem 1rem;
}
