/* Reset some default styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: rgb(2,0,36);
    background: -moz-linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(247,203,109,1) 0%, rgba(250,170,127,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(247,203,109,1) 0%, rgba(250,170,127,1) 100%);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(247,203,109,1) 0%, rgba(250,170,127,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024",endColorstr="#faaa7f",GradientType=1);
    /*background-image: url("../assets/blogback.png");
    /*background-repeat: no-repeat;
    background-size: cover;
    background-size: 100%;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
  }
  
  ::-webkit-scrollbar {
    display: none;
  }
  
  /* Navbar styles */
  .navbar {
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 1%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 60%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #2dd48077;
    color: #fff;
    padding: 20px 20px;
    border-radius: 25px;
  }
  
  .navbar-left {
    margin-left: 1%;
    display: flex;
    align-items: center;
  }
  
  .navbar-right {
    margin-right: 1%;
    display: flex;
    align-items: center;
  }
  
  .website-name {
    text-decoration: none;
    color: #000;
    font-weight: bold;
  }
  
  .navbar-link {
    margin-left: 12px;
    text-decoration: none;
    color: #000;
  }
  
  .navbar-link:hover {
    color: #cc1c1c;
  }
  
  .vl {
    border-left: 3px solid green;
    margin-left: 12px;
    height: 20px;
    left: 50%;
    top: 0;
  }
  
  /* Content styles */
  .content {
    margin-top: auto;
    text-align: center;
  }
  
  .main-content {
    margin-left: 20%;
    margin-right: 20%;
    width: 60%;
    height: 100vh;
    display: flex;
  }
  
  .title {
    font-size: 5em;
    margin: auto auto;
    background: url("../assets/textcolor_final.jpg");
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .bio {
    font-size: 1.3em;
    margin: auto auto;
    margin-left: 15%;
    background: url("../assets/textcolor_dark.jpg");
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .about-t {
    font-size: 1.5em;
    margin: auto auto;
    text-align: left;
    margin-left: 15%;
    background: url("../assets/textcolor_dark.jpg");
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .about-c {
    font-size: 1.2em;
    margin: auto auto;
    background: url("../assets/textcolor_final.jpg");
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  