/* General reset and body styles */
body, html {
    height: 100%;
    margin: 0;
    overflow: hidden;
    background-color: #f0f8ff; /* Light, corporate blue */
}

/* Container to center content */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Logo styling */
.logo {
    font-family: sans-serif;
    font-size: 3em;
    font-weight: bold;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeIn 2s ease-in-out;
    margin-bottom: 0.5em;
}

/* Fade-in animation for the logo */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* "Since 2018" styling */
.established {
  font-size: 0.8em;
  color: #777;
}