*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#141423;
    color:white;
    font-family:Arial, Helvetica, sans-serif;

    display:flex;
    justify-content:center;
    align-items:center;

    min-height:100vh;
}

.container{
    width:min(700px,90%);
    text-align:center;
}

h1{
    font-size:3rem;
    margin-bottom:.5rem;
}

.subtitle{
    color:#bbbbd6;
    margin-bottom:2rem;
}

.card{
    background:#202036;
    padding:2rem;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.card h2{
    margin-bottom:1rem;
}

.card p{
    line-height:1.7;
}