.navbar {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: teal;
  color: #fff;
  margin-top: -0px;
}

h1 {
    text-align: center;
    margin-top: 150px;
    font-size: 70px;
    color: crimson;
}

body {
    background-image: url('/static/background.avif');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

#tech {
  display: block;
  width: 900px;
  height: auto;
  margin-top: -120px;
  max-width: 100%;
  margin-left: 100px;
}

#about_text {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: 500px;
  }
  
  #about_paragraph {
    font-size: 30px;
    margin-left: 1070px;
    margin-top: -400px;
    padding: 15px;
    margin-right: 150px;
  }
  
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  a {
    font-size: 25px;
    display: block;
    padding: 8px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li {
    list-style: none;
    float: left;
  }

  
  .logo {
    font-size: 32px;
  }
  
  .menu {
    display: flex;
    gap: 1em;
    font-size: 15px;
  }
  
  .menu li:hover {
    background-color: #4c9e9e;
    border-radius: 5px;
    transition: 0.3s ease;
  }
  
  .menu li {
    padding: 5px 14px;
  }
  
  a:hover {
    background-color: #728FCE;
    cursor: pointer;
  }
  
  a:active {
    background-color: #2F539B;
  }