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

body{
    font-family:"Poppins",sans-serif;
    background:#0f0f13;
    color:white;

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

    min-height:100vh;

    text-align:center;
}

main{
    padding:2rem;
}

h1{
    font-size:clamp(2.5rem,7vw,5rem);
    margin-bottom:1rem;
    font-weight:600;
}

p{
    color:#b8b8b8;
    font-size:1.1rem;
    font-weight:300;
}