body {
    background-color: azure;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.neumorphism-box {
    padding: 3%;
    border-radius: 50px;
    background: #f0ffff;
    box-shadow: 20px 20px 60px #ccd9d9, -20px -20px 60px #ffffff;
    max-width: 500px;
    max-height: 300px;
}

h1,
h2,
h3 {
    text-align: center;
    font-family: sans-serif;
    font-weight: 800;
}

a {
    color: #ccd9d9;
}