 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body { 
    font-family: Arial, sans-serif; 
    font-style: italic;
    text-align: center; 
    background: linear-gradient(135deg, #ffffff, #ddd);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}
header {
    width: 100%;
    background: darkgreen;
    color: white;
    padding: 15px 25px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    position: fixed;
}
.description {
    font-size: 15px;
    color: #333;
    margin: 10px;
    margin-top: 95px;
    margin-bottom: 12px;
    padding: 10px;
    text-align: left;
    width: 90%;
    max-width: 1000px;
    border: 1px solid #aaa;
    border-radius: 8px;
}
.container {
    background: white;
    padding: 25px;
    width: 90%;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 2px 10px;
}
h2 { 
    color: #333; 
    font-size: 22px;
    margin-bottom: 15px;
}
input { 
    padding: 12px;
    font-style: italic;
    width: 100%; 
    border: 1px solid #aaa;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s ease;
}
input:focus {
    border-color: darkgreen;
    outline: none;
    box-shadow: 0 0 5px green;
}
button { 
    padding: 12px 20px; 
    width: 100%; 
    border: none;
    border-radius: 8px;
    background-color: #FFC94F; 
    font-size: 18px; 
    font-style: italic;
    font-weight: bold; 
    color: black;
    transition: 0.3s ease; 
    cursor: none;
    margin-top: 15px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
button:hover { 
    background-color: darkgreen; 
    transform: scale(1.05);
    color: white;
    box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.2);
}
.tutorial {
    width: 90%;
    max-width: 1000px;
    font-size: 15px;
    color: #444;
    margin: 20px auto;
    margin-bottom: 5px;
    text-align: left;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}
.tutorial h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}
.tutorial ol {
    padding-left: 20px;
}
.tutorial li {
    margin-bottom: 10px;
}
.tutorial1 {
    width: 90%;
    max-width: 1000px;
    font-size: 15px;
    color: #444;
    margin: 20px auto;
    margin-bottom: 80px;
    text-align: left;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}
.tutorial1 h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
    cursor: none;
    text-decoration: none;
}
.tutorial1 ol {
    padding-left: 20px;
}
.tutorial1 li {
    margin-bottom: 10px;
}
img {
    width: 100%;
    max-width: 1000px;
    align-items: center;
    margin: auto;
    margin-top: 25px;
    border: 1px solid #aaa;
    border-radius: 8px;
}
.pages {
    background: white;
    font-size: 15px;
    color: #333;
    margin: 20px auto;
    line-height: 1.6;
    margin-top: 90px;
    margin-bottom: 80px;
    padding: 30px;
    text-align: left;
    width: 90%;
    max-width: 1000px;
    border-radius: 8px;
    cursor: none;
    text-decoration: none;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
.pages h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    cursor: none;
    text-decoration: none;
}
footer {
    width: 100%;
    background: darkgreen;
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 12px 50px;
    font-size: 12px;
    margin-top: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
}
.footer-container a {
    color: white;
    text-decoration: none;
    cursor: none;
    transition: 0.3s;
}
.footer-container a:hover {
    color: darkyellow;
}
.footer-links {
    margin-bottom: 10px;
}
.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
    margin: 5px;
}
.footer-links a:hover {
    color: darkyellow;
}
@media (max-width: 1000px) {
    .footer-container p {
        font-size: 12px;
    }
}
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
