html, body {
  overflow-x: auto;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'poppins','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* color: #c5c6ccfe; */
    /* background: #212121; */
    /* color: #e0e1dd; */
    color: #b6b8d6;
}
section{
  background-image: url(./assets/hero-bg1.png);
  background-position: center;
  background-size: cover;
 


}

:root {
  --bg-dark: #0b0e17;
  --bg-gradient: radial-gradient(circle at left, #3b2d63, #0b0e17 60%);
  --nav-bg: rgba(15, 18, 35, 0.8);

  --accent: #6d5dfc;
  --accent-soft: #8b7cff;

  --text-main: #ffffff;
  --text-muted: #b6b8d6;

  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
}

/* body{
  background: var(--bg-gradient);
  color: var(--text-main);
  min-height: 100vh;
} */

.navbar{
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px 0 80px;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  span{
    color: var(--accent-soft);
  }
  nav{
    grid-column: 1/3;
    grid-row: 1/1;
}
.msg{
    font-size: 1.7rem;
    font-weight: 700;
}
.list ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    list-style: none;
  }
  .list a{
    text-decoration: none;
    transition: all 0.25s;
    
  }
.list a:hover{
  color:#6d5dfc;
}
.list a:active{
  color:#6d5dfc7e;
}
.hero{
  background-image: url(./assets/final_hero.png);
  background-size: cover;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 80px 1fr;
}
.hero-msg{
  padding: 40px;
  margin-top: 20%;
  margin-left: 2%;
}
.hero p:first-of-type{
  font-size: 100px;
  line-height: 85px;
  font-weight: 800;
}
.hero p:last-of-type{
  margin-top: 30px;
  width: 85%;
  margin-bottom: 40px;
}
.hero-msg button,.cv button{
  height: 40px;
  width: 120px;
  margin-right: 20px;
  color:#b6b8d6;
  background: transparent;
  border: solid 1px #6d5dfc;
  border-radius: 50px;
  transition: all 0.25s;
}
.hero-msg button:hover,.cv button:hover{
  background: #6d5dfc;
}
.hero-msg button:active,.cv button:active{
  background: #6d5dfc7e;
  
}
.project-header{
  height: 80px;
  font-size: 1.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-left: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.05);

}
.grid{
  /* height: 100%; */
  padding: 0px 5% 0px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.box{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 5%;
  margin: 5%;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255,255,255,0.05);
}
.view-project,.github{
  height: 40px;
  width: 100px;
  margin-right: 20px;
  color:#b6b8d6;
  background: transparent;
  border: solid 1px #6d5dfc;
  border-radius: 50px;
  transition: all 0.25s;
}
.view-project:hover,.github:hover{
  background: #6d5dfc;
}
.view-project:active,.github:active{
  background: #6d5dfc7e;
}
.box img{
  height: auto;
  border-radius: 10px;
  width: 100%;
}
.box h3,.project-header p{
  color: #6d5dfc;
}
.svg{
  font-size: 25px;
}