body {
    background-color: #2B2B2B;
    margin: 0;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}
.logo-image{
    width: 172px;
    height: 48px;
    display: block;
}
.menu-list {
    list-style: none;
    display: flex;
    gap: 24px; 
    margin: 0;
    padding: 0;
}
.menu-link {
    font-family: 'Rubik', sans-serif; 
    font-size: 14px;
    font-weight: 400px;
    line-height: 24px;
    color: #ffffff; 
}
.menu-link:hover {
    color: #ffffff; 
}
.button {
    width: 172px;
    height: 48px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    background-color: #f8f8f80d;
    color: #fefeff;
    border: 1px solid #f8f8f81a;
    border-radius: 12px;
}
.button:hover {
    background-color: #f8f8f8;
}
