* {
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

  /* Background */
  .bg {
    opacity: 0.07;
    position: absolute;
    z-index: -1;
    max-width: 100vw;
  }

main {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: start;
  width: 100vw;
  height: 100vh;
  
}

aside {
  font-weight: 400;
  width: 50vw;
  display: flex;
  justify-content: center;
  align-items: center;
  
  div {
    width: 600px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  /* Titulo */
  h1 {
    font-weight: 500;
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 15%;
    overflow: hidden;

    /* span */
    span {
      font-weight: 700;
    }
  }

  /* Sub Titulo */
  p {
    font-size: 33px;
    font-weight: 500;

    span {
      font-weight: 700;
      color: #007FFF;
    }
  }
}

a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 90px; 
  opacity: 1;
  border: solid 6px #3ABF70;
  border-radius: 50px;
  margin-top: 15%;
  cursor: pointer;
  text-decoration: none;
  background: rgba(215, 255, 237, 0.85);
  box-shadow: 0 4px 30px rgb(176, 255, 219);

  transition: all 0.3s ease;
  transform-origin: center;

  p {
    font-size: 30px;
    font-weight: 700;
    margin-right: 60px;
    color: #3ABF70;

    transition: all 0.3s ease;
    transform-origin: center;
  }

  img {
    width: 60px;
    height: 60px;
    position: absolute;
    z-index: 2;
    right: 10px;
  }

  &:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 40px rgb(176, 255, 219);

    p {
      transform: scale(1.07);
    }
  }
}

article {
  width: 50vw;
  display: flex;
  justify-content: center;
  padding-right: 10%;
  align-items: center;

  img {
    width: 75%;
  }
}