* {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  box-sizing: border-box;
}

.hero {
  width: 100%;
  height: 100vh;
  background-image: url("images/background.jpg");
  background-size: cover;
  background-position: center;
}

.hero2 {
  width: 100%;
  height: 100vh;
  background-color: #191919;
  background-size: cover;
  background-position: center;
}

.hero3 {
  width: 100%;
  height: 100vh;
  background-image: url("images/background2.jpg");
  background-size: cover;
  background-position: center;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 45px;
  padding-left: 8%;
  padding-right: 8%;
}

.logo {
  color: white;
  font-size: 35px;
  letter-spacing: 1px;
  cursor: pointer;
}

span {
  color: yellow;
}

nav ul li {
  list-style: none;
  display: inline-block;
  padding: 10px 25px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: capitalize;
  transition: 0.5s;
}

nav ul li a:hover {
  color: yellow;
}

.btn {
  background-color: yellow;
  color: gray;
  text-decoration: none;
  border: 2px solid transparent;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 30px;
  letter-spacing: 2px;
  transition: 0.4s;
}

.btn:hover {
  transform: scale(1.2);
  letter-spacing: 4px;
}

.content {
  position: absolute;
  top: 50%;
  left: 8%;
}

h1 {
  color: white;
  margin: 20px 0px;
  font-size: 75px;
}

h3 {
  color: white;
  font-size: 25px;
  margin-bottom: 50px;
}

h4 {
  color: yellowgreen;
  letter-spacing: 2px;
  font-size: 20px;
}

.newslatter form {
  width: 380px;
  max-width: 100%;
  position: relative;
}

.newslatter form input:first-child {
  display: inline-block;
  width: 100%;
  padding: 14px 130px;
  border: 2px solid yellow;
  outline: none;
  border-radius: 30px;
}

.newslatter form input:last-child {
  position: absolute;
  display: inline-block;
  outline: none;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  background-color: yellow;
  color: gray;
  box-shadow: 0px 0px 5px #000, 0px 0px 15px #858585;
  top: 6px;
  right: 6px;
}

.about {
  width: 80%;
  padding: 10px 0px;
}

.about img {
  height: 550px;
  width: 400px;
  border-radius: 50px;
  transform: scale(0.8);
  transition: 0.4s;
  cursor: pointer;
}

.about img:hover {
  transform: scale(0.9) translateY(-2px);
}

.about-text {
  width: 550px;
}

.main {
  width: 1130px;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.about-text h2 {
  color: white;
  font-size: 75px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.about-text h5 {
  color: white;
  letter-spacing: 2px;
  font-size: 22px;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.about-text p {
  color: yellowgreen;
  letter-spacing: 1px;
  line-height: 28px;
  font-size: 18px;
  margin-bottom: 45px;
}

button {
  background-color: yellow;
  color: gray;
  text-decoration: none;
  border: 2px solid transparent;
  font-weight: bold;
  padding: 13px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

button:hover {
  background-color: transparent;
  border: 2px solid yellow;
  cursor: pointer;
}

.form-box {
  width: 300px;
  height: 400px;
  position: relative;
  top: 90px;
  left: 210px;
  background: rgba(0, 0, 0, 0.6);
}

.main-heading {
  color: yellow;
  padding-bottom: 15px;
}

.form2 {
  position: relative;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
}

.form2 input {
  font-family: sans-serif;
  outline: none;
  border: none;
  border-bottom: 1px solid black;
  width: 100%;
  margin: 0 0 15px;
  padding: 15px;
  font-size: 14px;
}

.form2 button {
  font-family: sans-serif;
  width: 100%;
  color: white;
  font-size: 14px;
  cursor: pointer;
  padding: 15px;
  border: none;
  background: yellowgreen;
}

.form2 .asking {
  font-size: 12px;
  margin: 15px 0 0;
  color: white;
}

.form2 .asking a {
  color: yellow;
  text-decoration: none;
}

.form2 .register-form {
  display: none;
}

.form2 h1 {
  font-size: 30px;
}
