*{
  margin: 0;
  padding: 0;
  font-family: 'Courier New', Courier, monospace;
  box-sizing: border-box;
}
.banner{
  width: 100%;
  height: 100vh;
  background-image:linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.content{
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #FFD700;
}
.content  h1{
  font-size: 70px;
  margin-top: 80px;
}
button{
  width: 200px;
  padding: 15px 0;
  text-align: center;
  margin: 20px 10px;
  border-radius: 10px;
  font-weight: bold;
  border: 2px solid #FFD700;
  background: transparent;
  color:#FFD700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-size: 15px;
}
span{
  background: #000000;
  height: 100%;
  width: 0;
  border-radius: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: 0.5s;
  border: 0.5px solid #FFD700;
}
button:hover span{
  width: 100%;
}
button:hover{
  border: none;
}
.logo{
  width: 10%;
  height: 20vh;
  cursor: pointer;
}

