* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: Arial, Verdana, sans-serif;
    color: #ffffff;
    background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1920');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    background-color: rgba(0, 0, 0, 0.6);
}

header .logo {
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav a {
    margin-left: 25px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav a:hover {
    color: #e0a458;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px;
    background-color: rgba(0, 0, 0, 0.55);
    min-height: 60vh;
}

h1 {
    font-size: 34px;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

h2 {
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 600px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    max-width: 500px;
    margin-bottom: 12px;
    font-size: 16px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
}

footer {
    text-align: center;
    padding: 25px;
    font-size: 13px;
    color: #dddddd;
    background-color: rgba(0, 0, 0, 0.6);
}
