@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

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

body {
    font-family: "Open Sans", sans-serif;
}

img {
    width: 100%;
    margin-top: 20px;
}

strong {
    color: #594caf
}

header {
    position: relative;
    background-color: #594caf;
    background-image: url('../images/lbd_thumbnail.png');
    background-size: cover;
    background-position: center;
}

header::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); /* Adjust opacity as needed */
    z-index: 1;
    border-radius: inherit;
}

header .header-content {
    position: relative;
    z-index: 2;
    color: rgb(249, 249, 249);
    padding: 20px 0;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header .header-links {
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    max-width: 300px;
    width: 100%;
}

header a {
    text-align: center;
    text-decoration: underline;
    color: rgb(249, 249, 249);
}

h1 {
    text-align: center;
    padding: 20px 0;
    font-weight: 600;
}

h2 {
    text-align: center;
    font-weight: 300;
    font-size: 1em;
    margin-bottom: 20px;
}

header p {
    font-weight: 300;
    margin-top: 20px;
    line-height: 1.5em;
}

main {
    width: 80%;
    margin: 0 auto;
}

main h3 {
    margin: 30px 0;
}

.song {
    margin-bottom: 20px;
}

.vp-demo {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.vp-demo p {
    margin: 10px 0;
}

.audio-sample {
    margin: 20px 0;
}

.satb-group {
    /* border: 2px dotted #6A5ACD; */
    background-color: #ddd9f7;
    padding: 10px;
    border-radius: 30px;
}

.vp-group {
    /* border: 2px dotted #6A5ACD; */
    margin-top: 10px;
    background-color: #f8ecd3;
    padding: 10px;
    border-radius: 30px;
}

footer {
    text-align: center;
    background-color: #594caf;
    color: white;
    margin-top: 40px;
    padding: 30px 0;
    font-weight: 300;
}