body {
    font-family: 'Roboto', sans-serif;
    background-color: #f3f3f3;
}
a {
    color: #434343;
    text-decoration: none;
}
.root {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
}
.logo {
    margin-bottom: 10px;
}
.logo img {
    width: 200px;
}
.content {
    width: 800px;
    height: 430px;
    background-color: #ffffff;
    box-shadow: 1px 2px 18px -3px rgba(0,0,0,0.12);
    -webkit-box-shadow: 1px 2px 18px -3px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 1px 2px 18px -3px rgba(0,0,0,0.12);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.contentbody {
    padding: 60px;
}
.icon {
    text-align: center;
    margin-bottom: 10px;
}
.icon img {
    width: 120px;
}
.title {
    font-size: 36px;
    color: #434343;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
}
.desc {
    font-size: 18px;
    color: #434343;
    text-align: center;
    margin-bottom: 80px;
}
.desc span {
    font-weight: 500;
    color: #e20000;
}
.footer {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 800px) {
    body {
        padding: 20px;
    }
    .root {
      position: relative;
      left: 0;
      top: 0;
      transform: none;
    }
    .content {
        width: 100%;
        height: auto;
    }
    .contentbody {
        padding: 30px;
    }
    .title {
        font-size: 24px;
    }
    .icon img {
        width: 80px;
    }
    .desc {
        margin-bottom: 40px;
    }
    .desc span {
        display: block;
    }
    .footer {
        flex-direction: column;
    }
    .footer div {
        margin-bottom: 5px;
    }
}