*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Verdana', sans-serif;
}
body{
  color: white;
  background-color: black;
}
.container{
  width: 100%;
  height: 100vh;
  padding-top: 35px;
  padding-left: 8%;
  padding-right: 8%;
  background-image: url(back.jpg);
  background-position: top left;
  background-size: 100% 100vh;
  background-repeat: no-repeat;
}
nav{
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo a{
  font-size: 32px;
  text-decoration: none;
}
span{
  color: orange;
}
.content{
  margin-top: 10%;
  width: 600px;
}
.content h2{
  font-size: 48px;
  line-height: 48px;
}
.content h3{
  font-size: 16px;
  margin-top: 10px;
  line-height: 25px;
  color: orange;

}
.content p{
  margin-top: 10px;
  font-size: 12px;
}
.content ul{
  margin-top: 10px;
  margin-left: 10px;
  font-size: 12px;
}
a{
  color: #fff;
  text-decoration: none;
}
.link {
  margin-top: 40px;
  height: 40px;
}
.btn{
  color: #000;
  text-decoration: none;
  background: #fff;
  padding: 9px 25px;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.5s;
}
.btn:hover{
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
