/* Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Raleway:ital,wght@0,100;0,300;0,400;0,600;1,100;1,300;1,400;1,600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
    
}
    /* Variables*/
:root{
    --main-color:#647bff;
    --body-color:#090a1a;
    --container-color:#171b3c;
    --head-color:#222231;
    --box-color:#0d0f26;
    --bg-color:#fff;
    --try:#4c94e6;
    --try2:#14e0c2;
}


.font1 {
    font-family: 'Audiowide', cursive;;
}

body{
    color: var(--bg-color);
    background: var(--body-color);
    font-family: 'Audiowide', cursive;
    font-family: 'Raleway', sans-serif;

}

img{
    width: 100%;
}

section{
    padding: 3rem 0 2rem;
}

a{
    text-decoration: none;
}

list{
    list-style: none;
}

.container{
    max-width: 960px;
    margin: auto;
    width: 100%;
    

}
header{
    
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo{
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--main-color);
}

.navbar{
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
}

.nav-link{
    font-size: 0.94rem;
    padding: 4px 8px;
    border-radius: 0.2rem;
    color: var(--bg-color); 
}

.nav-link:hover{
    color: var(--main-color);
    background: var(--container-color);
    transition: 0.3s all linear;
}

/* menu icon*/

.menu-icon{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 5px;
    cursor: pointer;
    z-index: 200;
    transition: 0.3s;
}

.menu-icon div{
    display: block;
    background: var(--bg-color);
    height: 2px;
    width: 24px;
    transition: 0.3s;
}

.move .line1{
    transform: rotate(-45deg) translate(-5px, 5px);
}

.move .line2{
    opacity: 0;
}

.move .line3{
    transform: rotate(45deg) translate(-5px, -5px);
}

.home{
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 7rem;
}

.home-content{
    position: relative;
    max-width:600px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }

    .home-img{
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #98a7fc;
    overflow: hidden;
    margin-bottom: 2rem;
}

.home-img{
   width: 180px;
   height: 180px;
   object-fit: cover; 
   object-position: center;
}
.home-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.home-text h3{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--main-color);

}

.home-text h3::before{
    content: '';
    position: absolute;
    top:50%;
    transform: translate(-50%);
    left: -15px;
    height: 2px;
    width: 20px;
    background: var(--main-color);
}

.home-text h3::after{
    content: '';
    position: absolute;
    top:50%;
    transform: translate(-50%);
    right: -35px;
    height: 2px;
    width: 20px;
    background: var(--main-color);
}
.home-text h2{
    font-size: 3.5rem;
    line-height: 4.8rem;
    
}
.home-text p{
    font-size: 1rem;
    margin-bottom:1.5rem;
}

.home-text .colour{
    color: var(--try);

}
.heading{
    font-size: 5rem;
    text-transform: uppercase;
    color: var(--head-color);
    text-align: center;
    margin-bottom: rem;
}
.about-content{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1.5rem;
}
.about-data span{
 font-size: 1rem;
 font-weight: 500;
 text-transform: uppercase;
 color: var(--main-color);
}
.about-data h2{
    font-size: 2rem;
    line-height: 2.6rem;
    font-weight: 700;
    margin: 1 rem 0;
}
.xd{
    font-size: 0.87rem;
    display: inline-flex;
    align-items: center;
    column-gap: 0.5rem;
    color: var(--bg-color);
    background: var(--main-color);
    padding: 12px 16px;
    border-radius: 1rem;
    margin-top: 1rem;
}
.xd:hover{
    background: #546eff;
    transition: 0.3s all linear;
}
.about-text p{
    font-size: 0.987rem;
    letter-spacing: 2px;
    text-align: justify;
    margin-bottom: 1.5rem;

}
  .social-icons{
    display: flex;
    align-items: center;
  }
  .social-icons a {
    margin-right: 20px;
  }
  

  .github-icon {
    width: 42px;
    height: 42px;
    filter: invert(1);
  }
  .soundcloud-icon {
    width: 42px;
    height: 42px;
  }
  .twitter-icon {
    width: 42px;
    height: 42px;
    filter: invert(1);
  }

  .letterboxd-icon {
    width: 42px;
    height: 42px;
    
  }