/* General styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}

/* Container for content */
.container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: left;
}

/* Header */
h1 {
    color: #008080;
    font-size: 24px;
}

/* Links */
ul {
    list-style: disc;
    padding-left: 20px;
}

li {
    margin: 10px 0;
    display: list-item;
}

a {
    text-decoration: none;
    color: #008080;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
}

a:hover {
    color: #005f5f;
}

