/* Froge Melodies Stylesheet */

body {
    background-color: #f0f8ff;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #4c8c4a;
}

h1, h2, h3 {
    color: #47a04e;
    text-align: center;
}

a {
    color: #ee7752;
    text-decoration: none;
}

a:hover {
    color: #49a078;
    text-decoration: underline;
}

header {
    background-color: #b0e57c;
    padding: 20px;
}

footer {
    background-color: #32a852;
    text-align: center;
    padding: 10px;
}

button {
    background-color: #7bc96f;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

button:hover {
    background-color: white;
    color: black;
    border: 2px solid #7bc96f;
}

.froge-section {
    background-image: url('/images/froge-pattern.svg');
    background-repeat: no-repeat;
    background-size: contain;
    padding: 20px;
}

.music-note {
    content: url('/icons/music-note.svg');
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}