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

body {
    min-height: 100vh;
    background: #080f19;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.landing {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 30px;
    text-align: center;
}

.logo {
    width: min(600px, 90vw);
    height: auto;
    margin-bottom: 35px;
}

h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.18em;

    background: linear-gradient(
        90deg,
        #00c5e8,
        #00d5a0,
        #9be63f
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
