/* Galaxy Theme stylesheet for froge.ai */
body {
    background: linear-gradient(to right, #000428, #004e92);
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

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

a {
    color: #76c7c0;
    text-decoration: none;
}

a:hover {
    color: #ffcc00;
}

button {
    background-color: #76c7c0;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

footer {
    background: #000428;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}