@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

* {
    box-sizing: border-box;
}

body {
    background: rgb(163, 156, 156);
}

body, input, select, textarea {
    color: #555555;
    font-family: 'Montserrat', sans-serif;
    font-size: 13pt;
    font-weight: 300;
    line-height: 1.75em;
}

p {
    margin: 10px;
}

#container {
    margin: 0 auto;
    max-width: 895px;
    padding: 10px;
    background-color: #fff;
    position: relative;
    border:5px ridge #0072bc;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
}

.flex-container>div {
    background-color: #fff;
    margin: 25px;
}

img {
    width: 100%;
    height: auto;
}

#imgLogo {
    margin: 10px 0 0 10px;
    width: 150px;
}

.bio img {
    width: 175px;
    border: 5px solid #0072bc;
}

.bio p {
    max-width: 500px;
    margin-top: -.5em;
}

.audio {
    text-align: center;
    font-style: italic;
    font-weight: bold;
    line-height: 1.5em;
    margin-left: 8%;
}

.copy {
    text-align: center;
    font-style: italic;
    font-size: 80%;
    font-weight: bold;
    color:#0072bc;
    line-height: 1.5em;
}

.google_event_title {
    font-weight: bold;
    cursor: default;
    pointer-events: none; 
    color:#0072bc;       
}

.btn {
    -webkit-border-radius: 28;
    -moz-border-radius: 28;
    border-radius: 28px;
    font-family: Arial;
    color: #ffffff;
    font-size: 20px;
    background: #0072bc;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
  }
  
  .btn:hover {
    background: #3cb0fd;
    text-decoration: none;
  }

/* Menu */

#main-menu {
    position: absolute; 
    top: 50px;
    right: 25px;
    height: 50px;
    width: 550px;
    background: #0072bc;
    /*background: rgba(0,114,188,.7); /* #0072bc; */
}

#main-menu ul {
    width: 500px;
    width: 100%;
    height: 100%;
    margin: 0px auto;
    padding: 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#main-menu li {
    list-style-type: none;
    font-size: 2rem;
}

#main-menu a {
    color: #B9FAF8;
    font-size: 1.5rem;
    text-decoration: none;
}

#main-menu a:hover {
    text-decoration: underline;
}

#hamburger-input {
    display: none;
}

#hamburger-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    display: none;
    border: none;
    padding: 0px;
    margin: 0px;
    background: linear-gradient(to bottom,
            #3D0E61, #3D0E61 20%,
            white 20%, white 40%,
            #3D0E61 40%, #3D0E61 60%,
            white 60%, white 80%,
            #3D0E61 80%, #3D0E61 100%);
}

#hamburger-menu #sidebar-menu {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: -250px;
    width: 200px;
    height: 100%;
    background-color: #0072bc;
    transition: 0.3s;
    padding: 0px 10px;
    box-sizing: border-box;
}


#hamburger-menu h3 {
    color: #B9FAF8;
    font-size: 2.2rem;
}

#hamburger-menu ul {
    padding-left: 0px;
}

#hamburger-menu li {
    list-style-type: none;
    line-height: 3rem;
}

#hamburger-menu a {
    color: #B9FAF8;
    font-size: 1.3rem;
    text-decoration: none;
}

#hamburger-menu a:hover {
    text-decoration: underline;
}

#hamburger-input:checked+#hamburger-menu #sidebar-menu {
    visibility: visible;
    left: 0;
}

@media screen and (max-width: 750px) {
    #main-menu {
        display: none;
    }

    #hamburger-menu {
        display: inline;
    }

    #imgLogo {
        margin-left: 55px !important;
    }

    body { 
        border: none;
    }
}