@media screen and (min-width:901px) {
  .Navbar{
    box-sizing: border-box;
    z-index: 1;
    position: fixed;
    width: 100%;
    height: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 29rem;
    transition: all 0.4s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  }
  .Navbar-Change-shadow{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  .Navbar-light{
    background-color: white;
  }
  .Navbar-dark{
    background-color: #060c14;
  }
}
@media screen and (max-width:900px) {
  .Navbar{
    box-sizing: border-box;
    z-index: 1;
    position: fixed;
    width: 100%;
    height: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 29rem;
    transition: all 0.3s ease-in-out;
    background-color: white;
  }
  .Navbar-Change-shadow{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  .Navbar-light{
    background-color: white;
  }
  .Navbar-dark{
    background-color: #060c14;
  }
}
@media screen and (max-width:600px) {
  .Navbar{
    box-sizing: border-box;
    background-color: white;
    width: 100%;
    height: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
  .Navbar-Change-shadow{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  .Navbar-light{
    background-color: white;
  }
  .Navbar-dark{
    background-color: #060c14;
  }
}
@media screen and (max-width:300px) {
  .Navbar{
    box-sizing: border-box;
    background-color: white;
    width: 100%;
    height: 20vw;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
  .Navbar-Change-shadow{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  .Navbar-light{
    background-color: white;
  }
  .Navbar-dark{
    background-color: #060c14;
  }
}