*, html{
  padding: 0;
  margin: 0;
  box-sizing: 0;
  font-family: "Quantico", sans-serif;
  scroll-behavior: smooth;
}

/* Header */
.wrapper{
  width: 1024px;
  height: 40px;
  margin: auto;
  padding: 20px 0px;
  align-items: center
}

nav{
  background-image: linear-gradient(to right, #CAF0F8, #03045E);
  color: #03045E;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #CAF0F8;
}

nav .wrapper{
  display: flex;
  justify-content: space-between;
  font-size: 24px;
}

.menu{
  width: 50%;
}

.menu ul{
  display: flex;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  justify-content: space-between;
}

.menu ul li a{
  text-decoration: none;
  color: #CAF0F8;
  font-size: 24px;
  border-bottom: 1px solid #caf0f800;
  transition-duration: 300ms;
  text-shadow: #00000000 0px 0px 20px;
}

.menu ul li a:hover{
  font-size: larger;
  border-bottom: 1px solid #CAF0F8;
  transition-duration: 300ms;
  text-shadow: #000000 0px 0px 20px;
}

/* Landing Page */
header{
  background-image: linear-gradient(to right, #CAF0F8, #03045E);
  height: 100vh;
  position: relative;
}

.land-page{
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 80%;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #000000;
}

.land-page h4{
  font-size: 32px;
  margin: 0px;
  padding: 0px;
  text-shadow: 0 0 4px #CAF0F8;
}

.land-page h1{
  font-size: 64px;
  margin: 0px;
  padding: 0px;
  text-shadow: 0 0 4px #CAF0F8;
  text-transform: uppercase;
}

/* About */
#about{
  background-image: linear-gradient(to right, #CAF0F8, #03045E);
}

#about .wrapper{
  width: 80%;
  height: auto;
  margin: auto;
  padding: 50px;
  align-items: center;
  display: flex;
  gap: 20px;
}

#my-photo{
  width: 273px;
  background-color: #CAF0F8;
  padding: 50px;
  border-radius: 50px;
}

#text-abt{
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

#text-abt h2{
  font-size: 36px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: vh;
}

#text-abt p{
  font-size: 20px;
  color: #000000;
  text-align: justify;
  line-height: 1.5;
}

.contact a{
  text-decoration: none;
  color: #000000;
  font-size: 32px;
  margin-right: 20px;
  transition-duration: 300ms;
}

.contact a:hover{
  color: #CAF0F8;
  transition-duration: 300ms;
}

/* Portfolio */
#portfolio{
  background-image: linear-gradient(to right, #CAF0F8, #03045E);
  height: 100vh;
}

#portfolio .wrapper{
  width: 80%;
  height: auto;
  margin: auto;
  padding: 50px;
  align-items: center;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

#portfolio h2{
  font-size: 36px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 20vh;
}

#portfolio img{
  width: 453px;
}

.row1{
  display: flex;
  gap: 20px;
  justify-content: center;
  gap: 100px;
}

.row1 .card1{
  background-color: #CAF0F8;
  padding: 50px;
  border-radius: 50px;
  transition: all;
  transition-duration: 300ms;
  box-shadow: #00000000 0px 0px 20px;
}

.row1 .card1:hover{
  transform: scale(1.05);
  transition: all;
  transition-duration: 300ms;
  box-shadow: #000000 0px 0px 20px;
}

.row1 .card2{
  background-color: #CAF0F8;
  padding: 50px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Footer */
footer{
  background-color: #03045E;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #CAF0F8;
  text-align: center;
}

footer p{
  font-size: 16px;
  margin: 0px;
  align-items: center;
}

footer .contact{
  margin-left: 50px;
  align-items: center;
  justify-content: center;
}

/* Hamburger Menu*/
button.hamburger-menu{
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

button.hamburger-menu i{
  font-size: 28px;
  color: #CAF0F8;
}

button.hamburger-menu .icon-close{
  display: none;
}

/* 900, 600, 450*/

@media screen and (max-width: 900px){
  .wrapper{
    width: 90%;
  }

  .menu ul{
    gap: 20px;
  }

  #about .wrapper{
    flex-direction: column;
    text-align: center;
  }

  #my-photo{
    margin: auto;
  }

  .row1{
    flex-direction: column;
  }

  #portfolio h2{
    margin-bottom: 10vh;
  }
}

@media screen and (max-width: 600px){
  .land-page h1{
    font-size: 48px;
  }

  .land-page h4{
    font-size: 24px;
  }

  #portfolio img{
    width: 300px;
  }

  footer .contact a{
    font-size: 24px;
    margin-right: 10px;
  }

  button.hamburger-menu{
    display: inline;
  }

  .menu{
    display: none;
  }

  .tampil{
    display: inline;
  }

  .tampil ul{
    flex-direction: column;
    background-color: #03045E;
    width: 100%;
    position: fixed;
    top: 80px;
    left: 0;
  }

  .tampil ul li{
    padding: 10px 20px;
  }
}

@media screen and (max-width: 450px){
  .land-page h1{
    font-size: 32px;
  }

  .land-page h4{
    font-size: 18px;
  }

  #portfolio img{
    width: 250px;
  }

  nav .wrapper{
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .menu{
    width: 100%;
  }

  .menu ul{
    flex-direction: column;
    gap: 10px;
  }

}