body {
    font-family: "Verdana", system-ui;
    font-weight: 100;
    font-style: normal;
}

.background {
    background-color: rgb(255, 233, 252);
}

.section
{
    position: relative;
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box; 

    display: block;
    text-align: center;
    background-color: rgb(255, 0, 234);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding-top: 40px;
    padding-bottom: 40px;

    .section_headline {
        font-family: "DynaPuff", system-ui;
        font-size: 2em;
        font-style: normal;
        padding-bottom: 20px;
    }
}

.menu
{
    font-family: "DynaPuff", system-ui;
    display: flex;
    flex-direction:row;
    justify-content: space-around;
    flex-wrap: wrap;

    .menu_item 
    {
        font-size: 23px;
        font-weight: 100;
        vertical-align: middle;
    }

    /* Style the links inside the navigation bar */
    a {
        color: white;
        text-decoration: none;
    }
}

.spacer
{
    height: 50px;
}

.logo {
    height: 250px;

    background-image: url("../images/logo_4096x4096.png");
    background-size: 300px;
    background-position: center;
    background-repeat: no-repeat;
}

.members {
    color: white;
    text-align: center;
}

.member_cards {
    display: flex;
    flex-direction:column;
    row-gap: 10px;
}

.two_cards
{
    width:100%;
    height:100%;
    display: flex;
    flex-direction:row;
    row-gap: 10px;
    column-gap: 10px;
}

.card {
    background-color: rgb(255, 200, 248);
    border-radius: 8px;
    text-align: center;
  
    height: 200px;
    width: 100%;
    color: black;

    display: flex;
    flex-direction:row;

    h5 {
        font-weight: 200;
        margin: 0;
    }

    h6 {
        font-weight: 300;
        margin: 0;
    }
}

.card_foto {
    border-radius: 8px 0px 0px 8px;
    height: 100%;
    width: 100%;
    background-size: 150px;
    background-position: center;
    background-repeat: no-repeat;
}

.card_description
{
    font-size: 20px;
    height: 100%;
    width: 100%;
    text-align: center;
    align-content: center;
}

.card_foto_maik {
    background-image: url("../images/cards/maik.png");
}

.card_foto_sam {
    background-image: url("../images/cards/sam.png");
}

.card_foto_jesko {
    background-image: url("../images/cards/jesko.png");
}

.card_foto_andreas {
    background-image: url("../images/cards/andreas.png");
}

.songs {
    color: white;
    text-align: center;

    ul {
        margin: 0;
        padding: 0;
    }

    li {
        list-style: none;
    }
}

.dates {
    color: white;
    text-align: center;

    ul {
        margin: 0;
        padding: 0;
    }
    
    li {
        list-style: none;
    }
}

.media {
    color: white;
    text-align: center;

    ul {
        margin: 0;
        padding: 0;
    }
    
    li {
        list-style: none;
    }
}

.contact {
    color: white;
    text-align: center;

    ul {
        margin: 0;
        padding: 0;
    }
    
    li {
        list-style: none;
    }
}

@media (min-width: 700px) {
    .member_cards {
        flex-direction:row;
        column-gap: 10px;

        .card
        {
            flex-grow: 1;
            flex-direction:column;

            .card_foto {
                border-radius: 8px 8px 8px 8px;
                height: 166%;
            }
        }


    }
}