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

body {
    font-family: 'Outfit', sans-serif;
    background-color: hsl(212, 45%, 89%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.card {
    width: 320px;
    background-color: hsl(0, 0%, 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
}

h1 {
    font-size: 20px;
    color: hsl(218, 44%, 22%);
    font-weight: 700;
    margin: 20px 0 10px;
}

p {
    font-size: 15px;
    color: hsl(216, 15%, 48%);
    font-weight: 400;
}