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

html {
  scroll-behavior: smooth;
}

body {
  background: #000000;
  color: white;
}

header {
  width: 100%;
  height: 100vh;
  background-image: url("../images/Hero-Section-Landscape.png");
  background-size: cover;
  background-position: center;
  margin-bottom: 5vh;
}

.cursor {
  color: #ff004f;
  display: inline-block;
  width: 10px;
  animation: blink 0.7s infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

.about-container {
  padding: 5px 40px;
}

.skills-container {
  padding: 10px 20%;
}

.container {
  padding: 10px 40px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #262626;
  position: fixed;
  width: 100%;
  z-index: 1;
}

.logo {
  width: 140px;
}

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

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  position: relative;
}

nav ul li a::after {
  content: "";
  width: 0;
  height: 3px;
  background: #ff004f;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.5s;
}

nav ul li a:hover::after {
  width: 100%;
}

.header-text {
  margin-top: 20%;
  font-size: 30px;
}

.header-text h1 {
  font-size: 60px;
  margin-top: 20px;
}

.header-text h1 span {
  color: #ff004f;
}

#cursor {
  color: #ff004f;
}

.cursor-text {
  display: flex;
  font-size: 40px;
}

.about-text {
  width: 50vw;
}

nav .fas {
  display: none;
}

@media only screen and (max-width: 600px) {
  header {
    background-image: url("../images/Hero-Section-Portrait.png");
  }
  .header-text {
    margin-top: 150%;
    font-size: 16px;
  }

  .header-text h1 {
    font-size: 30px;
  }

  .cursor-text {
    display: flex;
    font-size: 23px;
  }

  .about-text {
    width: 60vw;
  }

  nav .fas {
    display: block;
    font-size: 25px;
  }

  nav ul {
    background: #ff004f;
    position: fixed;
    top: 0;
    right: 0;
    right: -200px;
    width: 200px;
    height: 100vh;
    padding-top: 50px;
    z-index: 2;
    transition: right 0.5s;
  }

  nav ul li {
    display: block;
    margin: 25px;
  }

  nav ul .fas {
    position: absolute;
    top: 25px;
    left: 25px;
    cursor: pointer;
  }

  .sub-title {
    font-size: 40px;
  }

  .skills-container {
    padding: 10px 10%;
  }

  .contact-left,
  .contact-right {
    flex-basis: 100%;
  }

  .btn2 {
    width: 100%;
  }
}
