@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    background-color: #1e1e1e;
    color: #f5f5f5;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Background pattern - hazard stripes */
.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        #2c2c2c 0 20px,
        #ffcc00 20px 40px
    );
    opacity: 0.05;
    animation: movePattern 10s linear infinite;
}

@keyframes movePattern {
    from { transform: translate(0, 0); }
    to { transform: translate(-40px, -40px); }
}

.container {
    text-align: center;
    z-index: 2;
}

h1 {
    font-size: 3rem;
    white-space: nowrap;
    border-right: 3px solid #ffcc00;
    width: fit-content;
    margin: auto;
    overflow: hidden;
}

.subtitle {
    font-size: 1.2rem;
    color: #bbb;
    margin-top: 10px;
}