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

body {
    background:
        linear-gradient(rgba(8,8,10,0.75), rgba(8,8,10,0.9)),
        url('https://images.pexels.com/photos/28641568/pexels-photo-28641568.jpeg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: #f3eee8;

    font-family: 'Crimson Text', serif;

    min-height: 100vh;
}

.overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(2px);
}

header {
    position: relative;
    z-index: 10;

    padding: 30px 60px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    color: #f3eee8;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

nav a:hover {
    color: #b48a78;
}

.hero {
    position: relative;
    z-index: 10;

    height: 80vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 20px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;

    letter-spacing: 4px;

    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    max-width: 700px;

    margin-bottom: 40px;

    color: #d6cec7;
}

.button {
    border: 1px solid #d6cec7;

    padding: 14px 34px;

    color: #f3eee8;

    text-decoration: none;

    transition: 0.3s;
}

.button:hover {
    background: rgba(255,255,255,0.08);
    border-color: #b48a78;
}

@media(max-width: 768px) {

    nav {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

}

.poem-list {
    width: 100%;
    max-width: 800px;

    margin-top: 60px;
}

.poem-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,0.12);

    font-size: 1.3rem;

    letter-spacing: 0.5px;
}

.poem-item span:last-child {
    color: #b8a89c;

    font-size: 1rem;
}