@import url("https://fonts.googleapis.com/css2?family=Outfit&display=swap");
body {
  font-family: "Outfit", sans-serif;
  text-align: center;
  color: white;
  background-color: #ff4c73;
}
#magic {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  height: 100vh;
}

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

.title {
  margin-top: 40px;
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 900;
}

.minText {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
}

.names {
  font-size: 36px;
  margin-bottom: 10px;
}

.email {
  margin-top: 60px;
  font-size: 22px;
}

@media only screen and (max-width: 600px) {
  .title {
    font-size: 26px;
  }

  .names {
    font-size: 22px;
  }

  .email {
    font-size: 14px;
  }
}

.names-container {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: flex;
  min-width: 300px;
  justify-content: space-around;
  align-items: center;
}

.name {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 30px;
}

.rounded-image {
  border-radius: 50%;
  width: 120px;
  height: 120px;

  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.3s ease;
}

.rounded-image:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .names-container {
    flex-direction: column;
    align-items: center;
  }

  .name {
    margin: 10px 0;
  }
}
.name-text {
  flex: 1;
  font-size: 24px;
  display: inline-flex;
  text-align: center;
  margin-top: 5px;
}

.bottomPosition {
  text-align: center;
  margin-bottom: 50px;
}

a {
  color: white;
  font-size: 12px;
  text-decoration: none;
}

.logo {
  width: 50px;
  height: 50px;
}
