* {
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    background: #3cec94;
    color: #383836;
    font-family: 'Roboto', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

#close {
    padding: 20px 20px 0 20px;
    font-size: 24px;
}

#check {
    align-self: center;
    font-size: 240px;
}

#content {
    padding: 0 40px;
}

#content h1 {
    text-align: center;
}

#content #data {
    text-align: center;
    margin-top: 40px;
}

#content #data .box {
    display: inline-block;
    padding: 10px;
    border: 3px solid;
    width: 35px;
    text-align: center;
    border-radius: 6px;
}

#content p {
    text-align: center;
    margin-top: 20px;
}

#footer {
    position: absolute;
    bottom: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

#footer #button {
    border-radius: 9999px;
    background: #fff;
    padding: 10px 20px;
}