body {
    background-color: #FFFFFF;
    color: #000000;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    text-transform: none; /* Keep text formatting as normal */
}

.container {
    padding: 20px;
    max-width: 800px; /* Limit max width for a page-like appearance */
    margin: 0 auto; /* Center the content */
}

.logo {
    width: 100%; 
    max-width: 450px; 
    display: block;
    margin: 20px auto 40px; /* Center logo */
}

.content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2.5s ease-out, transform 2.5s ease-out;
    text-align: left;
}

.content.visible {
    opacity: 1;
    transform: translateY(0);
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 10px 0;
    font-size: 1.2em;
}

/* Style for the main header */
.main-header {
    font-size: 2em; /* Bigger size for the main header */
    margin-bottom: 20px;
}

/* Style for the bold section headers */
.technology > li {
    font-size: 1.5em; /* Slightly smaller for bold section headers */
    margin-top: 40px; /* Add space above each bold header */
    margin-bottom: 20px; /* Add space below each bold header */
}

/* Indent the bulleted list items */
.technology ul {
    padding-left: 20px;
}

.technology ul li {
    list-style-type: disc; /* Add bullets */
    margin-left: 20px; /* Indent bullets */
    font-size: 1.1em; /* Slightly smaller font for bulleted items */
}
