<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background-image: url('https://www.migrateit.nl/background.jpg'); /* Add your desired data center image URL */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
}

/* Services Section */
.services {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services ul {
    list-style: none;
}

.services li {
    font-size: 1.25rem;
    margin: 10px 0;
}

/* Contact Section */
.contact {
    padding: 20px;
    text-align: center;
    background-color: #f0f0f0;
}

.contact a {
    color: #0073e6;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}
</pre></body></html>