body {
  background-color: white;
  margin: 0;
  padding: 0;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100vh;
}

.title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2;
  margin-top: 80px;
  margin-bottom: 20px;
}

.description {
  font-family: "Poppins", system-ui;
  font-weight: 300;
  font-style: normal;
  margin-top: 0px;
  margin-bottom: 48px;
}

.container {
  padding: 48px;
  border-radius: 24px;
  width: 520px;
  display: flex;
  flex-direction: column;
  background-color: rgba(59, 147, 69, 0.2);
  background-image: linear-gradient(180deg, rgba(59, 147, 69, 0.15) 0%, rgba(59, 147, 69, 0.25) 100%);
  box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px;
}

.tag-container {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.tag {
  font-family: "Poppins", system-ui;
  font-weight: 300;
  font-style: normal;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 24px;
  background-color: rgba(153, 153, 153, 0.2);
  text-decoration: none;
  font-size: 14px;
  color: black;
}

.mail {
    height: 37px;
    width: 62px;
    border-radius: 24px;
    padding: 0;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 660px) {
  .title {
    margin-top: 50px;
  }
  

  .container {
    padding: 24px 16px;
    border-radius: 12px;
    margin: 16px;
  }
}
