* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #1a1a1a;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

.gurt-text {
    font-size: 120px;
    font-weight: 400;
    color: #ffffff;
    transition: font-family 0.5s ease;
    user-select: none;
}

@media (max-width: 768px) {
    .gurt-text {
        font-size: 60px;
    }
}

