/* Froge Melodies Style Sheet */

/* General styles for a froge-themed website */
body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #e0f7fa;
    color: #004d40;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-weight: 700;
    color: #00796b;
}

/* Link styles */
a {
    color: #1de9b6;
    text-decoration: none;
}

a:hover {
    color: #004d40;
    text-decoration: underline;
}

/* Button styles */
button {
    background-color: #00796b;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #004d40;
}

/* Forms and inputs */
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 20px;
    border: 1px solid #00796b;
    border-radius: 5px;
}

/* Froge imagery */
/* Incorporate SVGs for beautiful froge illustrations */
.froge-icon {
    width: 50px;
    height: 50px;
    background-image: url('/assets/froge-icon.svg');
    background-size: cover;
}

/* Lovely animations to make froges hop */
@keyframes froge-hop {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

.froge-animation {
    animation: froge-hop 600ms ease-in-out infinite;
}