/* Reset some default styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #eee4e4;
    /*background-image: url("../assets/back.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: auto;
    margin-right: auto;
    margin-top: 17%;
    margin-bottom: auto;
    width: 60%;
    height: 45vh;
    display: flex;
  }

  .login {
    align-self: center;
    align-items: center;
    background-color: #cc1c1c;
    display: flex;
  }
  
  .title {
    font-size: 5em;
    margin: auto auto;
    background: url("../assets/text2.png");
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .bio {
    font-size: 1.2em;
    margin: auto auto;
    background: url("../assets/text2.png");
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .about-t {
    font-size: 5em;
    margin: auto auto;
    background: url("../assets/text2.png");
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .about-c {
    font-size: 1.2em;
    margin: auto auto;
    background: url("../assets/text2.png");
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  