* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: "Georgia", serif;
    color: #e5e5e5;

    background:
        linear-gradient(rgba(10,10,10,0.75), rgba(10,10,10,0.85)),
        url("tlo.jpg");

    background-size: cover;
    background-position: center 5%;
    background-repeat: no-repeat;
}

/* HEADER */

.site-header {
    padding: 30px 20px;
    text-align: center;
}

.logo {
    font-size: 32px;
    letter-spacing: 2px;
}

.tag {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.6;
}

/* MAIN WRAP */

.wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* HERO */

.hero h1 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero p {
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.6;
}

/* LISTA TEKSTÓW */

.entries {
    margin-top: 80px;
}

.lyrics-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lyrics-list a {
    text-decoration: none;
    color: #e5e5e5;
    font-size: 28px;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.lyrics-list a:hover {
    opacity: 1;
    transform: translateX(10px);
}

/* FOOTER */

.site-footer {
    text-align: center;
    padding: 60px 20px;
    font-size: 14px;
    opacity: 0.5;
}