/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(120deg, #fdfbfb, #ebedee);
    color: #333;
}

/* Container */
.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2em;
    color: #2c3e50;
}

/* Main */
main p {
    text-align: justify;
    font-size: 1.1em;
    margin: 0 0 20px;
}

/* Footer */
footer {
    text-align: center;
}

footer a {
    text-decoration: none;
    font-size: 1em;
    color: #3498db;
    font-weight: bold;
}

footer a:hover {
    color: #1abc9c;
    text-decoration: underline;
}