/* Froge.ai Tutorial Stylesheet */

body {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    background: #f0f8ff;
    color: #333;
}

h1, h2, h3 {
    color: #2e8b57;
}

a {
    color: #556b2f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

button {
    background-color: #8fbc8f;
    border-radius: 5px;
    padding: 10px 20px;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #7bb47b;
}