* {
  margin: 0;
  padding: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeIn 1s ease-in-out forwards;
}

.flex_centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.index_logo_link {
  font-size: 48px;
  margin-top: 30vh;
  color: black;
}

.header_logo_link {
  font-size: 28px;
  color: white;
}

.product_name {
  text-align: center;
  font-size: 32px;
  margin-top: 2rem;
}

.product_image {
  width: 500px;
}

@media (max-width: 768px) {
  .product_image {
    width: 90vw;
  }
}
