* {
  margin: 0;
  padding: 0;
  font-family: "Sofia", sans-serif;
}
body {
  background-image: linear-gradient(rgba(4, 9, 30, 0.8), rgba(4, 9, 30, 0.8)),
    url(Images/background.png);
  background-repeat: repeat;
  overflow: hidden;
}
.header {
  min-height: 100vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}
nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}
nav img {
  width: 100px;
  border-radius: 50%;
  border: solid 4px rgb(244, 16, 16, 0.6);
}
.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 20px;
  margin-left: 20px;
  margin-right: 0;
  position: relative;
  background-image: linear-gradient(
    rgb(252, 252, 121, 0.2),
    rgb(208, 160, 69, 0.3),
    rgb(218, 23, 23, 0.2)
  );
  border-radius: 45%;
}
.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 25px;
}
.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #f44336;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after {
  width: 100%;
}
.text-box {
  width: 70%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
.text-box h1 {
  font-size: 62px;
  color: rgb(240, 255, 240);
  border: solid 2px rgb(248, 3, 3);
  background-color: rgba(241, 130, 122, 0.3);
  border-radius: 20px;
}
.text-box p {
  margin: 10px 0 40px;
  font-size: 20px;
  color: rgb(255, 250, 250);
}
.hero-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.hero-btn:hover {
  border: 1px solid #f44336;
  background: rgb(218, 23, 23, 0.3);
  transition: 1s;
}
nav .fa {
  display: none;
}
