@font-face {
    font-family: "Baloo Paaji 2";
    src: url("../fonts/BalooPaaji2-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
}

:root {
    color-scheme: dark;
}

html,
body {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

* {
    box-sizing: border-box;
}

body {
    display: grid;
    min-height: 100vh;
    margin: 0;
    place-items: center;
    background: #101114;
    color: #fff;
    font-family: "Baloo Paaji 2", Arial, sans-serif;
    text-align: center;
}

#starfield {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

main {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

h1 {
    margin: 0 0 18px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    letter-spacing: .08em;
}

.creatools-logo {
    display: block;
    width: calc(100% - 40px);
    max-width: 600px;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto 28px;
}

p {
    margin: 7px 0;
    color: #b8bdc9;
    font-size: clamp(1rem, 2vw, 1.4rem);
    letter-spacing: .12em;
}
