body {
    margin: 0;
}

@media screen and (max-width: 670px) {
    header h1 {
        font-size: 6vw;
    }
    .headline .text {
        text-align: center;
    }
    .songcont {
        margin: 10px 2vw !important;
    }

    .gallery {
    margin: 30px 50px !important;
}
    .gallimg img{
        width: 120px !important;
    }
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}
header h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

header h1:hover {
    color: #FFD000;
    text-shadow: 2px 2px #000000;
}

.container {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.songcont {
    width: min(500px, 80vw);
    padding: 20px;
    background-color: #ffd000;
    margin: 10px 0;

    
}
.text {
    font-family: Arial, Helvetica, sans-serif;
}
.text h2 {
    margin: 0;
}
.text p {
    margin: 0;
}

a {
    color: #FFD000;
    text-shadow: 1px 1px #000000;
    
}

footer {
    height: 150px;
    display: flex;
    align-items: center;
}

.gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 30px 200px;
}

.albumrel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 30px;
}

.related {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.gallimg img{
    width: 200px;
    border: 2px solid black;
    cursor: pointer;
}
.gallimg {
    margin: 0 2px
}

.headline {
    text-align: center;
}

#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.8);
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
}
