@font-face {
    font-family: 'BlowBrush';
    src: url('../fonts/blowbrush.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

h1 {
    font-family: 'BlowBrush', sans-serif;
    font-size: 10rem;
    animation: fadeInGlow 2.5s ease-in-out forwards, cloudyShift 15s infinite linear;
    opacity: 0;
    line-height: 1.2;
    letter-spacing: 6px;
    background: linear-gradient(270deg, #888, #bbb, #666, #999);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInGlow {
    0% {
        opacity: 0;
        text-shadow: none;
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }
}

@keyframes cloudyShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}
@media (max-width: 725px) {
    h1 {
        font-size: 5rem;
    }
}
