* {
  margin: 0;
  padding: 0;
  font-family: "Samsung";
}

@font-face {
  font-family: "Samsung";
  src: url(Font/samsungsharpsans-medium.otf);
}
@font-face {
  font-family: "SamsungOne";
  src: url(Font/SamsungOne-400.ttf);
}

body {
  background-color: #000;
}
nav {
  position: fixed;
  z-index: 100;
  width: 100%;
  background-color: #000;
}

.logo img {
  width: 120px;
  margin: 10px 0 0 0;
}

nav .wrapper {
  position: relative;
  max-width: 1300px;
  padding: 0 30px;
  height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 9px;
  margin: 0 10px 0 0;
  border-radius: 20px;
  font-family: "SamsungOne";
  transition: all 0.5s;
}
.nav-links li a:hover {
  background-color: #fff;
  color: #000;
  font-weight: 800;
}
.nav-links a {
  text-decoration: none;
}
.nav-links a ion-icon {
  color: #fff;
  margin: 0 15px 0 0;
  font-size: 16px;
  transition: all 0.5s;
}

/* Header */
header {
  position: relative;
  width: 100%;
  height: 100vh;
}

header img {
  position: absolute;
}

header img:nth-child(1) {
  top: 65%;
  width: 550px;
  z-index: 2;
  right: 0;
}

header img:nth-child(2) {
  top: 15%;
  width: 700px;
  z-index: 1;
  right: 0;
}

header .content {
  position: absolute;
  top: 30%;
  left: 5%;
  color: #fff;
}

header .content h1 {
  letter-spacing: 1px;
  margin: 15px;
  font-size: 70px;
}

header .content h2 {
  letter-spacing: 2px;
  margin: 10px;
  font-size: 55px;
}

.btn {
  position: absolute;
  padding: 9px 15px;
  border: 1px solid #fff;
  color: #fff;
  top: 80%;
  left: 6%;
  font-size: 15px;
  letter-spacing: 1px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.btn:hover {
  transform: scale(0.9);
}

.about {
  position: relative;
  padding: 0 5%;
  margin-top: 250px;
}

.about h1 {
  color: #fff;
  font-size: 70px;
  letter-spacing: 1px;
}

.about p {
  color: #fff;
  margin: 20px 0;
  line-height: 23px;
  letter-spacing: 1px;
  font-family: "SamsungOne";
  font-weight: 500;
}
