html, body {
  margin: 0;
  padding: 0;
}

h2 {
    font-family: "Fredoka", sans-serif;
    font-size: 50px;
    font-weight: 500;
    color: #a43467;
}

h3 {
  font-family: "Fredoka", sans-serif;
  font-size: 50px;
  font-weight: 500;
  margin: 0;
}

body {
  font-family: "Lexend", sans-serif;
  color: #96345c;
  background-color: #f0cfe0;
  background-image: linear-gradient(#edb6cd 1px, transparent 1px), linear-gradient(to right, #edb6cd 1px, #f0cfe0 1px);
  background-size: 60px 60px;
  text-align: center;
  padding: 0 8px;
}

main {

}

.femboyStyle {
    background: #fbe9f3;
    border: #d18dac;
    border-style: solid;
    border-radius: 60px;
    padding: 30px;
    opacity 0;
    animation: femboyStyle 1s forwards;
}

@keyframes femboyStyle {
  0% {
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

a {
    text-decoration: none;
    color: #d968a0;
}

p {
  margin: 0 auto;
  display: block;
  text-align: justify;
  max-width: 400px;
}

.buttonStyle {
    height: 55px;
    width: 160px;

    font-size: 31px;
    font-family: "Fredoka", sans-serif;
    font-weight: 500;

    color: #f5e7ee;
    background: #cb7b9c;

    border-radius: 12px;
    border-width: 3px;
    border-color: #b16385;
    border-style: solid;

    margin-bottom: 20px;
    padding-bottom: 4px;
}