* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 24px;
    
}

.logo {
    display: block;
    width: 100px;
    height: 100px;
}

nav {
    margin-left: auto;
    padding: 0;
    background: transparent;
}

.menuItems {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menuItems li {
    margin: 0;
}

.menuItems a {
    position: relative;
    text-decoration: none;
    color: #807979;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    transition: color 0.5s ease-in-out;
}

.menuItems a::before {
    content: attr(data-item);
    position: absolute;
    inset: 0;
    width: 0;
    overflow: hidden;
    color: #ff5454;
    transition: width 0.5s ease-in-out;
    
}

.menuItems a:hover::before {
    width: 100%;
}


body {
    background-image: url('img/background.png');
    background-repeat: no-repeat; /* prevents repeating */
    background-size: cover;       /* ensures the image covers the entire page */
    background-attachment: fixed; /* keeps the image fixed during scrolling */
    background-position: center;  /* centers the image */
}