body,
html {
  margin: 0;
  padding: 0;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: #2a7b9b;
  background: linear-gradient(
    138deg,
    rgba(42, 123, 155, 1) 0%,
    rgba(87, 199, 133, 1) 50%,
    rgba(237, 221, 83, 1) 100%
  );
}

.frosty {
  display: flex;
  flex-direction: column;
  place-items: center;
  padding: 40px;

  background: linear-gradient(
    138deg,
    rgba(119, 125, 127, 0.2) 0%,
    rgba(231, 231, 231, 0.4),
    rgba(155, 155, 155, 0.3)
  );

  border-radius: 30px;
  z-index: 1;
}

.text {
  display: flex;
  flex-direction: column;
  place-items: center;
}

.email {
}

h1 {
  margin-top: 0;
  letter-spacing: 5px;
  display: inline-block;
  transform: scaleX(1.36);
  color: white;
}

h2 {
  margin-bottom: 0;
  border-bottom: 2px solid rgb(255, 255, 255);
  letter-spacing: -1px;
  color: white;
}

a {
  display: inline-block;
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease;
}
a:hover {
  display: inline-block;
  color: black;
  transform: scale(1.2) rotate(-2deg);
}
