.header {
  position: fixed;
  padding-top: 10px;
  max-height: 50px;
  /* background: linear-gradient(to bottom,rgb(0, 10, 56),white); */
  background-color:rgba(0, 10, 56, 0.5);
  backdrop-filter: blur(10px);
  /* filter: blur(10px); */
  /* background-color: aliceblue; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .3s ease-in-out;
  top: 0;
  left: 0;
  right: 0;  
  z-index: 2;
}

.about {
    /* background-color: #000a36; */
    height: fit-content;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
  }

.about-me-text {
    color: aliceblue;
    max-width: 700px;
    font-family: 'poppins';
    font-size: 15px;
    word-wrap: break-word;
  }