/* basic */

html, body{
  height: 100%;
  padding: 0;
  margin: 0;
}

/* font & links */


p {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  line-height: 150% ;
  color: #BABABA;
  text-decoration: none;

}

button {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  letter-spacing: -1.1% ;
  color: #6D63FC;
  text-decoration: none;
  padding: 0px;
  padding-bottom: 18px;
  text-decoration: none;
  background: none;
  border: none;
  text-align: center;
}

button:hover{
  background: none;
  border: none;
  transition-duration: 0.4s;
  color: #BABABA;
}

/* body */


#website {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}


#content {
  display: flex;
  flex-direction: column;
  width: 55vw;
  padding: 0;
}



/* mobile */

@media (max-width: 500px) {

  #logo, #content, #links{
    width: 80vw;
  }

}

@media (max-height: 900px) {
  #website {
    justify-content: flex-start;
    padding-top: 30px;
  }
}
