@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}

body {
    background-color: black;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

p {
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: clamp(1rem, 8vw, 2rem);
    max-width: 90vw;
}

@media (max-width: 450px) {
    body {
        min-height: 95vh;
    }
    p {
        font-weight: 700;
    }
}
