body {
    background-color: #3fb2a0;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

p {
    margin: 0;
    padding: 0;
}

.container {
    background-color: #ffffff;
    width: 40vw;
    height: 50vh;
    overflow: hidden;
    border-radius: 20px;
}

.container > p:nth-child(1) {
    font-size: 3vw;
    color: #333333;
    text-align: center;
    line-height: 3;
}

.container > p:nth-child(2), .container > p:nth-child(3) {
    font-size: 1vw; 
    width: 30vw;
    overflow: hidden;
    margin: auto auto;
    line-height: 3;
}

.container > p:nth-child(3) {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 10vh;
}

.mobile-container {
    background-color: #ffffff;
    width: 80vw;
    height: 50vh;
    overflow: hidden;
    border-radius: 20px;
}

.mobile-container > p:nth-child(1) {
    font-size: 7vw;
    color: #333333;
    text-align: center;
    line-height: 3;
}

.mobile-container > p:nth-child(2), .mobile-container > p:nth-child(3) {
    font-size: 4vw; 
    width: 70vw;
    overflow: hidden;
    margin: auto auto;
    line-height: 3;
    text-indent: 2em;
}

.mobile-container > p:nth-child(3) {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 10vh;
}