@import url('https://fonts.googleapis.com/css2?family=Cookie&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

body {
    color: #333333;
    font-family: 'Open Sans', sans-serif;
    background: url('background.png');
    padding: 20px;
}

.center {
    margin: auto;
    max-width: 1000px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 50px;
}

img {
    display: block;
    max-width: 100px;
    max-height: 100px;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 10px;
}

img.header {
    width: 200px;
    max-width: none;
    max-height: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

img.songbook {
    height: 100px;
    width: auto;
    max-width: none;
    max-height: none;
    margin-top: 10px;
    margin-bottom: 0;
}

h1 {
    font-family: 'Cookie', cursive;
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
}

h2 {
    font-family: 'Cookie', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    text-align: center;
}

p {
    margin-bottom: 0.5rem;
}

a {
    color: inherit;
    text-decoration: underline;
}

a:hover {
    color: rgb(36, 30, 156);
}

hr {
    border-width: 3px;
    margin-top: 50px;
}

.lead {
    font-size: 1.25rem;
    color: #555555;
    margin-bottom: 2rem;
    text-align: center;
}

#map {
    width: 100%;
    height: 400px;
    margin-top: 30px;
}

table {
    margin: auto;
}
td {
    padding: 5px 10px;
}
table tr td:first-of-type {
    font-weight: bold;
}

@media only screen and (min-width: 800px) {
    body {
        padding: 50px;
    }
    .center {
        padding: 50px;
    }
    h1 {
        font-size: 4rem;
    }
    h2 {
        font-size: 3rem;
    }
    p {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    .lead {
        font-size: 1.5rem;
    }
    img {
        margin-top: 70px;
        margin-bottom: 20px;
    }
    img.header {
        width: 300px;
        margin-top: 20px;
        margin-bottom: 50px;
    }
    td {
        font-size: 1.25rem;
    }
}