@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

body {
  font-family: 'Montserrat';
  margin: 5vh 5vw;
  padding: 0;
}

h1 {
  font-weight: 600;
  font-size: 4em;
  margin-top: 0;
  margin-bottom: 0;
}

p {
  font-size: 1.25em;
}

#main-description {
  font-size: 1.75em;
}

a {
  color: #52b8dd;
  padding-left: 3px;
  padding-right: 3px;
  text-decoration: none;
  background: linear-gradient(to right, #52b8dd, #00cddd, #00debb, #32e97b, #a8eb12);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: color 0.5s, background-size 0.5s ease-in-out;
}


a:hover {
  font-weight: 500;
  color: white;
  background-size: 100% 100%;
}

@media only screen and (max-width: 600px){
  body {
    margin: 6vh 8vw;
  }

  h1 {
    font-weight: 600;
    font-size: 3em;
  }
  
  p {
    line-height: 2em;
  }
  
  #main-description {
    line-height: 1.6em;
  }
  
}