body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    /*
     * info from freeCodeCamp:
     * bottom code makes height always full screen,
     * means footer will stay at bottom.
     */
    position: relative;
    min-height: 100vh;
    padding-bottom: 135px;
    background-color: white;
}

footer {
    background-color: lightgray;
    position: absolute;
    text-align: center;
    width: 100%;
    height: 135px;
    bottom: 0;
}

/* Eddie Green banner at the top */
.banner {
    background-image: url(/graphics/banner_background.png);
    background-repeat: repeat;
}

.banner img {
    max-height: 120px; 
    max-width: 100%;
}

/* Menu information  */
/* TODO: CLEAN THIS UP! */
.menu {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: rgba(152, 184, 147, 0.6);
    color: white;
    width: 100%;
    border-bottom: 1px solid #21201e;
}

.menu .icons {
    border: 1px solid white;
    width: 20px;
    padding: 5px;
}

/* Picture of Eddie Green  */
.picture {
    background-color: lightgray;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.picture img {
    height: 379px;
    box-shadow: 3px 3px 3px 3px rgb(90, 90, 90);
}

/* Music page  */

.main {
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 75px;
    text-align: center;
}

.condensed-text {
    width: 60%;
    margin: auto;
}

.text-box {
    background-color: rgba(128, 128, 128, 0.3);
    width: 70%;
    margin: 15px 30px;
}

/* Recordings page */

audio {
    width: 60%;
}

/* Gallery information */
#gallery-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.gallery-image {
    height: 100px;
    width: 100px;
    border: 2px solid black;
    margin: 10px;
}

/* BUTTONS */
.button, .dropdown-button {
    background-color: rgba(89, 119, 85, 0.25);
    box-shadow: 1px 1px 3px 1px #495a46;
    display: inline-block;
    text-align: center;
    width: 100px;
    border-radius: 12px;
    padding: 10px;
    margin: 5px 5px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: bold;
    text-decoration: none;
}

.submenu {display: none;}

.submenu-show {
    display: block;
    position: absolute;
    background-color: #99b994;
    border: 1px solid black;
    border-style: none solid solid solid;
}


.dropdown-button {
    text-align: center;
    display: none;
    padding: 10px 0;
    width: 97%;
}

.button:hover, .dropdown-button:hover {
    animation: button-hover 0.3s normal;
    background-color: rgba(89, 119, 85, 0.7);
}

@keyframes button-hover {
    from {background-color: rgba(89, 119, 85, 0.25);}
    /* from {background-color: #99b994;} */
    to {background-color: rgba(89, 119, 85, 0.7);}
}

.menu-dropdown {
    display: none;
    text-align: center;
    background-color: #b4d5af;
}

.button-display {display: block;}


/* background-color: #59775540;
    box-shadow: 1px 1px 3px 1px #597755;
    display: inline-block;
    text-align: center;
    width: 100px;
    border-radius: 12px;
    padding: 10px;
    margin: 5px 5px;
    color: rgba(0, 0, 0, 0.75);
    font-weight: bold;
    text-decoration: none; */

/* other buttons in body */
.column-buttons, .search-buttons, .condensed-buttons, .text-box {
    text-decoration: none;
    color: black;
    background-color: rgba(120, 120, 120, 0.25);
    box-shadow: 1px 1px 3px 1px darkgray;
    width: 50%;
    margin: 15px 20px;
    padding: 10px;
    font-size: larger;
    display: inline-block;
    border-radius: 10px;
}

@media screen and (max-width: 600px) {
    .column-buttons {width: 80%};
}

.search-buttons {
    display: none;
}

.condensed-buttons {
    width: auto;
    padding: 10px 25px;
}

.search-buttons {
    border: 2px solid black;
    border-radius: 0;
    font-size: small;
    position: relative;
    margin: 0 200px;
    width: 30%;
}

/* gray buttons already defined above */
.buttons-green {background-color: rgba(0, 128, 0, 0.25);}

.buttons-gray:hover, .condensed-buttons:hover {
    animation: gray-button-hover 0.3s normal;
    background-color: rgba(120, 120, 120, 0.7);
}

.buttons-green:hover {
    animation: green-button-hover 0.3s normal;
    background-color: rgba(0, 128, 0, 0.7);
}

@keyframes gray-button-hover {
    from {background-color: rgba(120, 120, 120, 0.25);}
    to {background-color: rgba(120, 120, 120, 0.7);}
}

@keyframes green-button-hover {
    from {background-color: rgba(0, 128, 0, 0.25)}
    to {background-color: rgba(0, 128, 0, 0.7);}
}

/* Phone screen settings */
@media screen and (max-width: 950px) {
    .button {display: none;}
    .dropdown-button {display: inline-block;}
    audio {width: 90%;}
    .condensed-text, .search-buttons {width: 90%; margin: auto;}
    .banner img, img{max-width: 100%;}
    .banner {text-align: center;}
}

/* COMMENTS SECTION */
.comments-container {
    padding: 0 10px;
    text-align: justify;
    overflow: scroll;
    border: black 1px solid;
    border-radius: 5px;
    height: 300px;
    background-color: darkgray;
}

.comment {
    background-color: lightgray;
    font-weight: normal;
    padding: 10px 10px;
    margin: 10px 0;
}
