html {
  scroll-behavior: smooth;
 }
*{
    padding: 0;
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    box-sizing: border-box;
}
body{
    min-height: 800px;
    scrollbar-width: 0;
}
body::-webkit-scrollbar{
    width: 0;
}

.hidden{
    opacity: 0;
    transition: 1s;
    filter: blur(5px);
    transform: translateX(-100%);
}
.show{
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}
.star{
    height: 100vh;
    width: 100%;
    background-image: url(./assets/1103783.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 45px;
    padding-left: 8%;
    padding-right: 8%;
    position: center fixed;
}

#logo{
    color: #b1ff99;
    font-size: 35px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .4s;
}
#logo:hover{
    color: cadetblue;
    
}
span{
    color: aqua;
    transition: .4s;
}
span:hover{
    color: #FF4A47;
}
nav ul li{
    list-style-type: none;
    display: inline-block;
    padding: 10px 25px;
}
nav ul li a{
    color: #FF4A47;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
    transition: .4s;
}
nav ul li a:hover{
    color: aquamarine;
    
}
.btn{
    background-color: #FF4A47;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 10px  25px;
    border-radius: 30px;
}

.btn:hover{
    background-color: white;
    color: #FF4A47;
    transition: .4s;
}
#cc{
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
}
.rotate {
    rotate: 90deg;
}
.f{
    font-size: 1rem;
}
.s{
    font-size: 1.5rem;
}
.t{
    font-size: 2rem;
}
.star-arrows {
    position: absolute;
    bottom: 32px;
    right: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 2;
}
.star-arrows h2 {
    color: aquamarine;
    margin: 0;
    font-size: 50px;
    text-align: right;
    background: none;
    filter: none;
}
#cc h2{
    color: white;
}
.text:nth-child(2){
    transition-delay: 200ms;
}
.text:nth-child(3){
    transition-delay: 400ms;
}
.text:nth-child(4){
    transition-delay: 1000ms;
}
.text:nth-child(5){
    transition-delay: 800ms;
}
.text:nth-child(6){
    transition-delay: 600ms;
}
h1{
    color: aquamarine;
    margin: 20px 0px 20px;
    font-size: 50px;
}
h3{
    color: white;
    font-size: 25px;
    margin-bottom: 50px;
}
h4{
    color:white;
    letter-spacing: 1px;
    font-size: 20px;
}
#nwl{
    background-color: #FF4A47;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 10px  25px;
    border-radius: 30px;
    box-shadow: 0px 0px 5px #000, 0px 0px 15px #727277;
}
#about{
    width: 100%;
    padding: 100px 0px;
    background-color: #181818;    
}
#about img{
    height: auto;
    width: 320px;
}
.about-text{
    width:550px;
}
.abouts a{
    color: white;
}
.abouts:nth-child(2){
    transition-delay: 200ms;
}
.abouts:nth-child(3){
    transition-delay: 400ms;
}
.abouts:nth-child(4){
    transition-delay: 600ms;
}
.abouts:nth-child(5){
    transition-delay: 800ms;
}
.abouts:nth-child(6){
    transition-delay: 1000ms;
}
.abouts:nth-child(7){
    transition-delay: 1200ms;
}
#main{
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    cursor: default;
}
.about-text h2{
    color: white;
    font-size: 75px;
    text-transform: capitalize;
    margin-bottom: 20px;
    cursor: default;
}
.about-text h5{
    color: white;
    letter-spacing: 2px;
    font-size: 22px;
    margin-bottom: 25px;
    text-transform: capitalize;
    text-decoration: none;
    
}
.about-text h5 a{
    color: white;
    letter-spacing: 2px;
    font-size: 22px;
    margin-bottom: 25px;
    text-transform: capitalize;
    text-decoration: none;
    cursor: default;
}
.about-text p{
    color: aliceblue;
    letter-spacing: .5px;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 45px;
}
button{
    background-color: #FF4A47;
    color: white;
    text-decoration: none;
    border: 2px transparent solid;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: .4s;
}
button:hover{
    background-color: transparent;
    border: 2px solid #FF4A47;
    cursor: pointer;
}

#projects{
    background: white;
    width: 100%;
    padding: 100px 0px;
}
#title h2{
    color: black;
    font-size: 75px;
    margin: 30px auto;
    text-align: center;
}
#boxbox{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}
#card{
    height: 365px;
    width: 335px;
    padding: 20px 35px;
    background: #D0D0D0;
    border-radius: 30px;
    margin: 15px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
#card i{
    font-size: 50px;
    display: block;
    text-align: center;
    margin: 25px 0px;
    color: #FF4A47;
}
h5{
    color: rgb(51, 162, 177);
    font-size: 23px;
    margin-bottom: 15px;
}
#projects img{
    height: auto;
    width: 300px;
}
.pra p{
    color: black;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 25px;
}
#card .button{
    background-color: #FF4A47;
    color: white;
    text-decoration: none;
    border: 2px transparent solid;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: .4s;
}
#card .button:hover{
    background-color: white;
    color: #000;
    border: 2px solid #FF4A47;
    cursor: pointer;
}
#photography{
    width: 100%;
    padding: 100px 0px;
    background-color: #181818;  
}
#photography a{
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 32px;
}
.gallery {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 40px auto;
  max-width: 1600px;
}
.album-item {
  margin-bottom: 24px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  background: #fff;
  width: 350px;
  padding: 0;
  display: block;
}
.album-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 2/3;
  border-radius: 18px;
  background: #222;
}
#ext-projects #title h2{
    color: black;
    font-size: 50px;
    margin: 30px auto;
    text-align: center;
}
#ext-projects{
    padding: 40px;
}
#ext-projects #body h3{
    color: #000;
    letter-spacing: .5px;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 18px;
    padding-left: 0;
    width: auto;
}
.flex {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.description {
  flex: 1 1 0;
  min-width: 220px;
}
.description h3 {
    font-size: 18px;
    color: #000;
    letter-spacing: .5px;
    line-height: 28px;
    margin-bottom: 18px;
}
.project-img {
  width: 45vw;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}
.ext:nth-child(2){
    transition-delay: 200ms;
}
.ext:nth-child(3){
    transition-delay: 400ms;
}
.ext:nth-child(4){
    transition-delay: 600ms;
}
.ext:nth-child(5){
    transition-delay: 800ms;
}
.ext:nth-child(6){
    transition-delay: 1000ms;
}
#random{
    width: 100%;
    padding: 100px 0px;
    background-color: #181818;  
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 40px;
}
.inline-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
}
.inline-flex .sketch-img {
  max-height: 500px;
  border-radius: 10px;
}
#contact{
    width: 100%;
    height: 290px;
    background-color: #151515;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
#contact p{
    color:white;
    font-size: 30px ;
    font-weight: bold;
    margin-bottom: 25px;
}
#contact .button-2{
    background-color: #FF4A47;
    color: white;
    text-decoration: none;
    border: 2px transparent solid;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: .4s;
}
#contact .button-2:hover{
    background-color: transparent;
    border: 2px solid #FF4A47;
    cursor: pointer;
}
footer{
    position: relative;
    width: 100%;
    height: 200px;
    background: #101010;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
footer p:nth-child(1){
    color: white;
    font-size: 30px;
    text-align: center;
    line-height: 26px;
}
.socials{
    display: flex;
}
.socials a{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF4A47;
    border-radius: 50%;
    margin: 22px 10px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: .4s;
}
.socials a:hover{
    transform: scale(1.3);
}
.lic{
    color: #727277;
}

/*
About page here
*/

.about-star{
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.about-star img{
    position: absolute;
    filter: brightness(0.4);
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    z-index: -5;
}
.about-star-h2 {
    position: absolute;
    bottom: 32px;
    right: 48px;
    color: aquamarine;
    margin: 0;
    font-size: 50px;
    text-align: right;
    z-index: 2;
}
.about-star a{
    text-decoration: none;
}
.ptg h2{
    margin: 30px;
}
.img{
    width: 30%;
    border-radius: 20px;
    margin: 50px;
}
.sketch{
    width: 40%;
    border-radius: 20px;
    margin: 20px;
}
.second{
    padding-right: 0%;
}
.art{
    background-color: #181818;
    width: 100%;
    margin-top: 0;
}
.hobbies:nth-child(2){
    transition-delay: 200ms;
}
.hobbies:nth-child(3){
    transition-delay: 400ms;
}
.hobbies:nth-child(4){
    transition-delay: 600ms;
}
.hobbies:nth-child(5){
    transition-delay: 800ms;
}
.art-div{
    margin-top: -200px;
}
.art-text{
    color: white;
    margin-top: 70px;
    font-size: 30px;
    margin-right: 5%;
}
.art-text2{
    color: black;
    margin-top: 70px;
    font-size: 30px;
    margin-right: 5%;
}
#sub-title .sub{
    font-size: 50px;
    padding-top: 30px;
    text-align: center;
}
.sub-art{
    color: white;
    background-color: #181818;
    margin-bottom: -10px;
    padding-bottom: -10px;
}
.para{
    text-align: center;
    margin-top: 40px;
}
.img2{
    width: 50%;
    border-radius: 20px;
    margin: 50px;
}
.img3{
    width: 40%;
    border-radius: 20px;
    margin: 10px;
}
.gaem{
    margin: 20px;
}
.stat{
    width: 90%;
    align-items: center;
    margin: 0px;
    border-radius: 20px;
}
.blender{
    width: 60%;
    border-radius: 20px;
    margin: 50px;
}
#blender{
    margin-left: 30px;
}
