
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

/*Navigation bar*/

.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.navbar{
    position: fixed;
    width: 100%;
    padding: 15px 0;
    background: #0f0f11;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.navbar .max-width{
    display: flex;
    align-items: center; 
    justify-content: space-between;
}
 
.navbar .logo a {
    color:#c3073f;
    font-size: 35px;
    font-weight: 600;
}
.navbar .logo a span{
    color: rgba(245, 245, 245, 0.801);;
    font-style:normal;
    font-weight: 100;
}
.navbar > .max-width > .menu  > div {
    list-style: none;
    display: inline-block;
}
.navbar .menu .nav-link-wrapper a{
    color:#c3073f;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px; 
    transition: color 0.3s ease;

}

.navbar .menu  a:hover{
    color: darkgray;
}

/*Home Section*/
.home{
    display: flex;
    background-image: url("images/black\ bg_.jpeg");
    
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: rgba(245, 245, 245, 0.801);;
    min-height: 500px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    
}

.home .max-width{
    margin: auto 0 auto 40px;
}

.home .home-content .text-1{
  font-size: 35px;
  font-weight: 100;
  margin-left: -2px;
}

.home .letter {
  display: inline-block;
  opacity: 0;
}

.home .letter {
  display: inline-block;
}

.home .home-content .text-2{
    font-size: 70px;
    font-weight: 600;
    margin-left: -3px;
    color:#c3073f;
  }

.home .home-content .text-3{
  padding-top: 20%;
    font-size: 46px;
    margin: 5px 0;
}
section{
    padding: 100px 0;
}

/*About Section*/
.about{
    background: url("images/about_me1.jpeg");
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.about .title{
    color:#c3073f;
    position: relative;
    text-align: center ;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 15px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

}

.about .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width:180px;
    height:3px;
    color:#e8dbe0;
    mix-blend-mode: color-burn;
    transform:translateX(-50%);

}

.about .title::after{
    content: "Who I am";
    position: absolute;
    bottom: -10px;
    left: 50%;
    font-size: 15px;
    color:#e8dbe0;
    padding: 5px;
    background:#050505;
    transform:translateX(-50%);
}

.about .about-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;

}
.about .about-content .left{
    width: 45%;
}

.about .about-content .left img{
    border-radius: 60%;
    filter:contrast(0.9);
    image-resolution: 1;
    height: 400px;
    width: 400px;
    object-fit: cover;
}

#typewriter{
  font-size: 20px;
  color:#e8dbe0;
  white-space: pre-wrap;
}
span p{
  animation: blinker 1s linear infinite
}

@keyframes blinker {
  50%{
    opacity: 0;
  }

}

/*Project Section*/
.projects{
    background: url("images/projectimage.jpeg");
    appearance: black;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.projects .title{
    color:#c3073f;
    position: relative;
    text-align: center ;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 15px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

}
/*Project Section(Minesweeper)*/
.projects .projects-content{
    display: flex;
    flex-wrap: wrap;
    align-items:flex-end;
    justify-content: space-evenly;

}
.projects .max-width .projects-content .Minesweeper img{
    display: flex;
    filter:contrast(0.9);
    image-resolution: 1;
    height: 250px;
    width: 250px;
    object-fit: cover;
}

.projects .max-width .projects-content .Minesweeper h1{
padding-left: 15%;
position:relative;
font-size: 25;
color:#f1edee;
}

.projects .max-width .projects-content .Minesweeper p{
    position:relative;
    font-size: 25;
    color:#b6a4aa;
    text-align: justify;
}

/*Project Section(Web-Calculator)*/
.projects .max-width .projects-content .Web-Calculator img{
    display: flex;
    filter:contrast(0.9);
    image-resolution: 1;
    height: 250px;
    width: 250px;
    object-fit: cover;
}

.projects .max-width .projects-content .Web-Calculator h1{
    padding-left: 15%;
    position:relative;
    font-size: 25;
    color:#f1edee;
}

.projects .max-width .projects-content .Web-Calculator p{
    position:relative;
    font-size: 25;
    color:#b6a4aa;
    text-align: left;
 }

 /*Project Section(Image-Processing)*/
.projects .max-width .projects-content .Image-Processing img{
    display: flex;
    filter:contrast(0.9);
    image-resolution: 1;
    height: 250px;
    width: 250px;
    object-fit: cover;
}

.projects .max-width .projects-content .Image-Processing h1{
    padding-left: 5%;
    position:relative;
    font-size: 25;
    color:#f1edee;
}

.projects .max-width .projects-content .Image-Processing p{
    position:relative;
    font-size: 25;
    color:#b6a4aa;
    text-align: left;
 }

 .projects .max-width h4 {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding-left: 8%;
    padding-top: 10%; 
    position:relative;
    font-size: 30;
    color:#f1edee;
    text-align: left;
 }

  /*Contact Info*/

  
  .Resume {
    background-image: url(images/contactimg.jpeg);
    background-position: 0%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;  
    padding-left: 17%;
  }

  .Resume .title{
      padding-left: 32%;
      padding-bottom: 1%;
      color: #c3073f;
      font-size: 30px;
      font-weight: 500;
      font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  }

  

.Resume .max-width .resume-content .pdf embed{
    border: 0vh;
    scroll-behavior: auto;
    height: 80vh;
    width: 100vh;
    align-content: center;
    margin-right: auto;
    margin-left: auto;

    
}
