body {
    font-family: "Rethink Sans", sans-serif;
    margin: 10;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
    height: 100vh;
    background-color: #f4f4f4;
}
.container {
    text-align: left;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
    font-family: "Merriweather Sans", sans-serif;
    margin-bottom: 5px;
}
h2 {
    margin-top: 0px;
    font-size: 18px;
    margin-bottom: 20px;
}
p {
    margin-bottom: 20px;
    max-width: 800px;
}
a {
    margin: 10px 0;
    color: #3498db;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}