/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ultra-violet: #646288ff;
    --cool-gray: #A099C4ff;
    --yinmn-blue: #3A5699ff;
    --background: #070E18ff;
    --color: #f5f5f5;
    --primary: #8a518c;
    --footer: #333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--background);
    color: var(--color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hero {
    text-align: center;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 50vh;
    object-fit: cover;
    filter: grayscale(0.7);
}

.logo {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    max-width: 50%;
}

/* Main content styling */
main {
    flex: 1;
    padding: 20px;
}

.about, .songs, .press {
    margin-bottom: 2rem;
}

.about h2, .songs h2, .press h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.about p, .songs p {
    font-size: 1.1rem;
}

.song-list {
    list-style-type: none;
}

.song-list li {
    margin-bottom: 0.5rem;
    display: flex;
}

.song-list li .title {
    flex: 1;
}


a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: var(--footer);
    color: #bbb;
}

@media (min-width: 768px) {
    .about, .songs, .press {
        max-width: 600px;
        margin: 0 auto 2rem auto;
    }
}

@media (max-width: 768px) {
    .hero-image {
        height: 20vh;
    }
}

footer {
    padding: 5px;
    display: flex;
}

.copy {
    flex: 1;

}

.impress {
    display: flex;
    justify-content: end;

    a {
        color: white;
    }
}