@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru&display=swap');

body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, #e0f6ff, #b9e4ff, #8bc9ff);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    
    display: flex;
    flex-direction: column;
}


.text {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #2b4a73;
    text-align: center;
    white-space: nowrap;
    font-family: "Kiwi Maru", serif;
    font-weight: 700;
    font-style: normal;
}

.char {
    display: inline-block;
    animation: float 1.8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

h2 {
    font-size: 10px;
    font-weight: bold;
}