 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;600;700;800;900&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  background: #fff;
  text-align: justify;
  width: 100%;
  height: 100%;
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  text-decoration: none;
  color: #555; 
  font-weight: 700; 
  background: #f2f2f2; 
  padding: 0rem 0.3rem 0rem 0.3rem;
}

a:hover {
  text-decoration: none;
  background: yellow;
  color: #000;
}

h1, h2, h3, h4, h5 {
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-top: 0rem;
  margin-bottom: 0rem;
}

img {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  margin-top: 1rem;
}

img:hover {
	opacity: 0.7;
	cursor: pointer;
}

main {
  padding-top: 10rem;
  position: absolute;
  inset: 0;
  margin: auto;
}

@media (min-width: 576px) {
h1, h2, h3, h4, h5 {
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  margin-top: -1rem;
  margin-bottom: 0rem;
}

  main, aside {
    padding-top: 25rem;
    position: absolute;
    inset: 0;
    margin: auto;
    width: 70%;
    height: 100%;

  }

  img {
  margin-top: 0rem;
}
  }
