/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #242427;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #f3eadf;
}

.container {
    text-align: center;
    padding: 0 20px;
}

/* Sizing the animation */
.logo-animation {
    width: 100%;
    max-width: 500px; /* Matches your export size */
    height: auto;
    display: block;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: "Overpass", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

p {
    font-size: 1.4rem;
    color: #f3eadf;
    font-family: "Overpass Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}