/* Welcome to the frogtastic world of styles! */

// A lovely shade of green for our favorite froges
body {
    background-color: #4CAF50;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #ffffff;
}

// Ribbit! Perfectly sized text for all your needs
h1, h2 {
    text-align: center;
    font-family: 'Frog Font', cursive, sans-serif;
}

// Buttons should hop around with style
button {
    background-color: #76b852;
    color: white;
    border: 2px solid #4CAF50;
    border-radius: 12px;
    padding: 10px 24px;
    cursor: pointer;
    text-align: center;
    transition-duration: 0.4s;
}

// On hover, they transform into prince charming
button:hover {
    background-color: white;
    color: #4CAF50;
}

// Links that every frog would love to lilypad-hop to
a {
    color: #a8d5e2;
    text-decoration: none;
    font-weight: bold;
}

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