@font-face {
    font-family: 'Manrope';
    src: url('Manrope[wght].woff2') format('woff2-variations');
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
}

body:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    background: radial-gradient(circle, transparent 20%, black 120%);
}

#container {
    font-size: min(5vw, 5vh);
    min-width: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: min(10vw, 20vh);
    font-weight: 800;
}