.body {
    width: 100%;
    display: flex;
    margin:0;
    padding: 0;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}


.container {
    width: 100%;
    background-color: lightgrey;
    margin:0;
    padding: 0;
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.preview {
    background-color: white;
    padding: 30px;
    border-radius: 30px;
    min-height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    
    justify-content: flex-start;
    align-items: center;
    max-width: 400px;
}

.preview__title {
    font-family: "Segoe UI", Verdana, Tahoma;
    font-size: 34px;
    line-height: 40px;
    font-weight: 600;    
    color: rgb(77, 29, 67);
}

.preview__par {
    font-family: "Segoe UI", Verdana, Tahoma;
    font-size: 16px;
    line-height: 20px;

}