@import url('chillax.css');

body{
  font-family: 'Chillax-Regular';
  background: black;
  margin: 0;
  display: grid;
  justify-content: center;
  align-content: start;
  height: 180vh;
  width: 100vw;
}
body nav{
  background: #098500;
  padding: 24px 48px;
  height: 20vh;
  width: 100vw;
  margin: -11vh auto 0px;
  display: grid;
  justify-content: center;
  align-content: center;
}
body h1{
  font-family: 'Chillax-SemiBold';  
  font-size: 36px;
  color: #64f000;
  width: 720px;
  margin: 60px auto 0px;
}
body p{
  color: white;
  width: 720px;
  font-size: 18px;
  margin: 60px auto 90px;
}
body img{
  height: 840px;
  width: 100vw;
  object-fit: cover;
  object-position: 0px -400px;
  display: block;
  margin: auto;
}
body ul{
  display: grid;
  justify-content: center;
  align-content: center;
}
body ul li{
  list-style: none;
  margin: 10px 0;
}
[role="button"]{
  background-color: white;
  color: black;
  text-decoration: none;
  border: 0;
  border-radius: 10px;
  height: 60px;
  width: 480px;
  display: grid;
  justify-content: center;
  align-content: center;
  transition: all .5s ease-in-out;
}
[role="button"]:hover{
  background-color: black;
  color: white;
  border: 5px solid #64f000;
}
