@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap');

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: #FDF8F6;
}

.nav {
    padding: 32px;
}

.container {
    padding: 48px 32px;

}

.content-wrapper {
    background-color: #fff;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 64px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inner-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
}

.text-wrapper {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
}

.text-wrapper h1 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 8px;
    margin-top: 0;
    font-family: 'DM Sans';
    font-style: normal;
}

.text-wrapper p {
    font-weight: 500;
    font-size: 14px;
    color: #999999;
    margin: 0;
    font-family: 'DM Sans';
    font-style: normal;
}

button {
    color: white;
    border: 0;
    padding: 0px 24px;
    height: 48px;
    background: #5398D4;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}