*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: rgb(255, 192, 3);
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  position: sticky;
  top: 0;
  height: 50px;

    .logo{
    width: 100px;
    cursor: pointer;
    margin-top: -1.8%;
    margin-bottom: -2%;
    }

    ul{
    margin-top: 2%;
    }

    ul li{
        list-style: none;
        display: inline-block;
        padding: 10px 16px;
    }

    ul li a{
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        color: black;
        margin-top: -3px;
    }

    ul li a:hover{
        color: rgb(244, 227, 175);
    }
}

.hero{
    width: 100%;
    background: url(image/Background/background\ 1.jpeg);
    background-position: center;
    background-size: cover;
    height: 80vh;
    display: flex;

    .info{
        margin: 10%;
    }

    .info h1{
        font-size: 45px;
        color: rgb(14, 9, 0);
    }

    .info h3, p {
        font-size: 18px;
        letter-spacing: 2px;
        line-height: 24px;
    }

    .info h3 {
        font-size: 28px;
    }

    span {
        color: rgb(255, 192, 3);
    }

    .info .btn{
        text-decoration: none;
        color: #000;
        background: rgb(255, 192, 3);
        margin: 26px 0;
        padding: 10px 18px;
        border: none;
        border-radius: 10px;
        display: inline-block;
        transition: .2s ease;
    }

    .info .btn:hover{
        background: #000;
        color: rgb(255, 192, 3);
    }

}

.about-cont {
    display: flex;
    height: 0;

    .about-me{
        margin-left: 10%;
    }

    .about{
        font-size: 45px;
        font-weight: 700;
        color: rgb(14, 9, 0);
        margin: 15%;
    }

    .content{
        font-size: 18px;
        letter-spacing: 2px;
        line-height: 24px;
    }

}

#project-cont{
    background-color: rgb(255, 192, 3);
}

.my-projects{
    margin-top: 500px;
    text-align: center;
    justify-content: center;
}

.projects{
  font-weight: 700;
  font-size: 45px;
  color: rgb(14, 9, 0);
  padding: 30px;
}

.my-works{
    padding: 15px;
}

.design{
    font-weight: 600;
    font-size: 30px;
    margin: 0 10PX 0 10px;
}

.project-image{
    grid-template-columns: repeat(5,auto);
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 20px 100px 20px 100px;
}

.project-img{
    width: 100%;
    min-height: 200px;
}

.project-imageS{
    grid-template-columns: repeat(3,auto);
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 20px 100px 20px 100px;
}

.project-imageB{
    grid-template-columns: repeat(2,auto);
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 20px 100px 20px 100px;
    gap: 5px;
}

.project-imageC{
    grid-template-columns: repeat(3,auto);
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 20px 100px 20px 100px;
}

.project-imageP{
    grid-template-columns: repeat(2,auto);
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 20px 100px 20px 100px;
}

.project-imageBC{
    grid-template-columns: repeat(4,auto);
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 20px 100px 20px 100px;
}

.contact-form{
  display: grid;
  grid-template-columns: 453px 550px;
  grid-gap: 20px;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
}

.contact-me{
    font-size: 45px;
    font-weight: 700;
    color: rgb(14, 9, 0);
    text-align: center;
    justify-content: center;
    margin-top: 100px;
}

.intro {
  font-weight: 500;
  font-size: 30px;
  align-items: center;
  text-align: center;
  line-height: 52px;
  margin-left: 20px;
  margin-right: 20px;
  color: #000;
  margin-bottom: 100px;
  transition: 500ms ease;
}

.intro:hover {
  transform: scale(1.1);
  transition: 500ms ease;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;

  .submit-btn{
    text-decoration: none;
    color: #000;
    background: rgb(255, 192, 3);
    margin: 26px 0;
    padding: 10px 18px;
    border: none;
    border-radius: 10px;
    display: inline-block;
    transition: .2s ease;
    }

    .submit-btn:hover{
    background: #000;
    color: rgb(255, 192, 3);
    }
}

#name,
#email,
#message {
  width: 100%;
  padding: 10px;
  border: 1px solid rgb(255, 192, 3);
  border-radius: 4px;
  height: 48px;
  margin-bottom: 20px;
}

#message {
  height: 114px;
  border: 1px solid rgb(255, 192, 3);
}

.form-container p {
  color: #000;
  font-size: 15px;
  font-weight: 200;
  margin-top: 5px;
}

.footer{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(255, 192, 3);

    ion-icon{
    color: #000;
    font-size: 35px;
    transition: .4s ease;
    margin: 20px;
    }

    ion-icon:hover{
    color: rgb(244, 227, 175);
    }
    
}
