/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 800px;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 30px;
}

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

/* Logo Styling */
.logo {
    font-size: 72px;
    font-weight: 100; /* Thin variant */
    font-style: normal;
    margin-bottom: 10px;
    /* Center the logo text */
    display: inline-block;
}

.header h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #1a73e8;
}

.header p {
    font-size: 1em;
    color: #666;
}

/* Content */
.content h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.content p {
    margin-bottom: 15px;
}

.content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.content ul li {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #999;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        margin: 20px;
        padding: 20px;
    }

    .header h1 {
        font-size: 1.5em;
    }

    .content h2 {
        font-size: 1.3em;
    }

    .logo {
        font-size: 28px;
    }
}
