*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body{
    background-color: #000000;
}
.header{
    display: flex;
    justify-content: center;
}

.header__container{
    max-width: 1480px;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-radius: 50px;
    background-color: rgba(26, 26, 26, 0.6);

    margin: 60px 222px 0px 218px;
}

.header__nav{
    width: 100%;
    
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 23px 28px 24px 62px;
}
.header__list{
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.header__logo{
    width: 36px;
    height: 50px;
}

.header__list-link{
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    text-decoration: none;
    color: #FFFFFF;
}
.header__button{
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: normal;
    background-color: rgba(217, 217, 217, 0.79);
    color: #000000;
    border: none;
    border-radius: 30px;
    padding: 15px 36px 14px; 
}
