@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600&display=swap');

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
    font-family: "Poppins", sans-serif;
    background-color: black;
}

.logo{
    text-decoration: none;
    height: 50px;
    margin-top: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header nav{
    background-color: black;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header ul{
    display: flex;
    list-style-type: none;
    align-items: center;
}

header ul a {
    text-decoration: none;
    color: #fff;
    padding: 0 1.5rem;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 0.83rem;

}

.search a{
     font-size: 1.05;
     padding: 0 3rem;

}

.hamburger{
    padding-left: 1.5rem;
}

.hamburger a {
    width: 37px;
    height: 37px;
    display: flex;
    border-radius: 50;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.hamburger.bar{
    position: relative;
    width: 52%;
    height: 1.3px;
    background-color: #fff;
    border-radius: 2px;
}

.hamburger.bar::before, .hamburger.bar::after{
    content: "";
    position: absolute;
    width: 60%;
    height: 100%;
    background-color: inherit;
    border-radius: 2px;
}