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

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 10px;
    font-family: 'Lato', sans-serif;
    overflow-y: hidden;
    overflow-x: hidden;
}

body{
  background-color: #0F222B;
  width: 100vw;
  max-height: 100vh;
}

.header{
  width: 100%;
  height: fit-content;
  display: grid;
  place-content: center;
  background-color: white;

}

.header > img{
  width: 90vw;
}

.content{
  width: 100%;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background-color: #0F222B;
}

a{
  color: white !important;
  text-decoration: none;
  cursor: pointer;
  font-size: clamp(2rem, 5vw, 8em);
  transition: color .5s;
}

a:hover{
  color: #817B61 !important;
}

@media (min-width: 1440px){
  .header > img{
    width: 40vw;
  }
}