:root{
  --main-orange: rgb(255, 196, 0);
}

*{
  font-family: 'Roboto', sans-serif;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  line-height: 0.9;
}

a{
  display: inline-block;
  text-decoration: none;
}

#homepage{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  width: 100vw;
  background: url('../img/laptop-1.jpg') no-repeat center center /cover;
  z-index: -1;
}

#homepage .heading{
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  z-index: 2;
  padding: 1rem;
  border-radius: 10px;
}

#homepage .heading h1{
  color: white;
  display: inline-block;
  font-size: 6rem;
  margin-bottom: 1rem;
}

#homepage .heading h2{
  display: inline-block;
  color: #610300;
  background: rgba(255, 255, 255, 0.589);
  padding: 0.5rem 0.5rem;
  font-size: 2rem;
  border-radius:10px;
}

.link-container{
  z-index: 2;
}

#homepage a{
  color: rgb(255, 235, 235);
  font-size: 3rem;
  background: #6103009c;
  padding: 1.35rem 0.55rem;
  border-radius: 10px;
  font-weight: bold;

  z-index: 2;
}

@media(max-width: 750px){
  #homepage .heading h1{
    font-size: 5rem;
  }

  #homepage .heading h2{
    font-size: 1.5rem;
  }

  #homepage a{
    font-size: 2rem;
  }
}

@media(max-width: 650px){
  #homepage .heading h1{
    font-size: 4rem;
  }

  #homepage a{
    font-size: 2rem;
    padding: 1rem 8rem;
  }
}

