
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&display=swap');

body {
    margin: 0;
    font-family: 'Cinzel', serif;
    background: url('pexels-piccinng-3075993.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

.header {
    background-color: #1a1a1a;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.logo img {
    height: 150px;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.15rem;
    padding: 0.4rem 0.8rem;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 2rem 2rem 4rem;
    text-align: center;
}

footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}
