@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@700&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
}

:root {
  --bg-color: #ffffff;
  --second-bg-color: #000000;
  --text-color: #000000;
  --second-text-color: #858585;
  --third-text-color: #ffffff;
  --main-color: #000000;
}



body {
  background: var(--bg-color);
  color: var(--text-color);
  scroll-behavior: smooth;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 4rem 9%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: .3s;
  background-color: var(--bg-color);
}

.logo {
  font-family: 'League Spartan', sans-serif;
  font-size: 40px;
  color: var(--text-color);
  font-weight: 600;
  letter-spacing: -2.5px;
  text-decoration: none;
}

.navbar ul {
  display: flex;
  list-style-type: none;
}

.navbar ul li a {
  display: block;
  font-size: 14px;
  color: var(--text-color);
  font-weight: 300;
  margin-left: 3.5rem;
  transition: .25s ease;
  text-decoration: none;
 
}

.navbar a:hover {
  color: #CCC;
  box-shadow: 0 2px 0 0 currentcolor;

}


.home {
  display: flex;
  align-items: center;
  padding: 25rem 9% 4rem; 
  margin-left: auto;
  margin-right: auto;
}

.home-content {
  max-width: 70rem;

}

.home-content h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 1px;

}

.home-content p {
  color: var(--second-text-color);
  font-size: 14px;
  margin: 3rem 0 4rem;
  letter-spacing: 1px;

}

.btn-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 25rem;
  height: 40px;
}

.btn-box .btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 100%;
  background: var(--main-color);
  border: .2rem solid var(--main-color);
  border-radius: 25px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--bg-color);
}

.btn-box .btn2 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 100%;
  background: var(--bg-color);
  border: .2rem solid var(--main-color);
  border-radius: 25px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--text-color);
  text-decoration: none;
}

.btn-box .btn:hover {
  background-color: var(--bg-color);
  color: var(--text-color);
}

.btn-box .btn2:hover {
  background-color: var(--text-color);
  color: var(--bg-color);
}


.about {
  display: flex;
  align-items: center;
  padding: 15rem 9% 4rem; 
}


.about-content {
  max-width: 70rem;
}

.about-content h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;

}

.about-content p {
  color: var(--second-text-color);
  font-size: 14px;
  margin: 3rem 0 3rem;
  letter-spacing: 1px;

}


.about-right p {
  color: var(--second-text-color);
  font-size: 14px;
  letter-spacing: 1px;
}

.social a {
  color: var(--main-color);
  letter-spacing: 2px;
  margin: 5px;
  font-size: 12px;
}

.social a:hover {
  color: #87ABA7;
}

.footer-text {
  padding-top: 5px;
  letter-spacing: 1px;
  font-size: 12px;
}

.footer {
  left: 0;
  bottom: 0;
  width: 100%;
  color: var(--second-text-color);
  text-align: center;
  padding-bottom: 20px;
  padding-top: 10px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 2px;
}

.row p {
  display: flex;
  padding: 30px 30px;
  
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 10%;
  max-width: 10%;
  padding: 0 5px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  max-width: 210px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 10%;
    max-width: 100%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 10%;
    max-width: 100px;
  }

}

.work {
  display: flex;
  align-items: center;
  padding: 1rem 9% 4rem; 
}


.work-content h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--second-bg-color);
}

.work-content p {
  color: var(--second-text-color);
  letter-spacing: 1px;
  padding-top: 40px;
  padding-bottom: 20px;
}

.frame-img {
  vertical-align: middle;
  max-width: 35%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.frame-img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }


.contact {
  display: flex;
  align-items: center;
  padding: 8rem 9% 2rem; 
}


.contact-content {
  max-width: 70rem;
}

.contact-content h1 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;

}

.contact-content p {
  color: var(--second-text-color);
  font-size: 14px;
  margin: 3rem 0 4rem;
  letter-spacing: 1px;

}

.about p {
  max-width: 70%;
  line-height: 25px;
}

.img-hover {
  vertical-align: middle;
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.img-hover:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }


  @media only screen and (max-width: 900px) {
    .hamburgers {
      display: block;
      cursor: pointer;
      position: absolute;
      right: 0;
      margin-right: 20px;
    }

    .hamburgers .line {
      width: 30px;
      height: 3px;
      background: #333;
      margin: 6px 0;
    }

    .navbar {
      height: 0;
      position: absolute;
      top: 80px;
      left: 0; 
      right: 0;
      width: 100vw;
      background: #ffffff;
      transition: 0.5s;
      overflow: hidden;
      text-align: center;
      justify-content: center;
    
    }
    
    .navbar.active {
      height: 300px;
    }

    .navbar.active a {
      opacity: 1;
    }

    .navbar ul {
      display: block;
      width: fit-content;
      margin: 80px auto 0 auto;
      text-align: center;
      transition: 0.5s;
      color: #000000;
   
    }

    .navbar ul li a {
      margin-bottom: 12px; 
    }
  }

  .fa-brands {
    font-size: 20px;
    padding-top: 10px;
    padding-left: 10px;
    color: var(--second-text-color);
    }

  .fa-brands:hover {
    color: var(--main-color);
  }

  .projects-container {
    display: grid;
  }

  .col-md-6 {
    width: 100%;
  }