@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  font-family: "Poppins", sans-serif;
  background-color: #0e0e0e;
  color: white;
  margin: 0;
  overflow-x: hidden;
}

::selection{
  background-color: grey;
}

h1{
  text-align: center;
  font-size: 5rem;
  font-weight: 400;
  margin: 5rem 0 0 0;
}

h2{
    font-weight: 300;
}
 
h4{
  text-align: center;
  display: block;
  margin: 0 auto;
  font-size: 0.9rem;
  font-weight: 300;
  width: 60vw;
  color: #eeeeee;
}

p{
  font-size: 0.9rem;
  font-weight: 300;
  color: #eeeeee;
}

button{
  padding: 0.7rem 2rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  border: solid 2px white;
  background-color: #0e0e0e;
  color: #eeeeee;
}

button:hover{
  background-color: #eeeeee;
  color: #0e0e0e;
  cursor: pointer;
}

header a{
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  padding: 1rem 1rem;
  border-left: solid 1px #a0a0a0;
  border-right: solid 1px #a0a0a0;
}

header a:hover{
  background-color: white;
  color: #0e0e0e;
}

header{
  min-width: 100% - 10vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  border-bottom: solid 1px #a0a0a0;
  background-color: #0e0e0e;

  position: sticky;
  top: 0;
  z-index: 9999;
}

.divider{
    height: 1px;
    width: 75vw;
    display: block;
    margin: 2rem auto;
    background-color: #a0a0a0;
    border-radius: 20px;
}

footer{
    width: 100% - 10vw;
    display: flex;
    margin: 10rem 0 0 0;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    border-top: solid 1px #a0a0a0;
}