/* Welcome to the froge-love J-Pop Style! */

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

h1, h2, h3 {
    color: #4682b4;
    text-shadow: 1px 1px #ffb6c1;
}

a:link, a:visited {
    color: #ff6347;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #ff4500;
}

.froge-love {
    background: url('/assets/froge-background.svg');
    background-size: cover;
    padding: 20px;
    border-radius: 15px;
    border: 3px dotted #7fffd4;
}

.froge-button {
    background-color: #7fffd4;
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
    transition: background-color 0.3s, transform 0.3s;
}

.froge-button:hover {
    background-color: #66cdaa;
    transform: scale(1.05);
}