* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: -apple-system-font, Helvetica Neue, Helvetica, sans-serif;
    font-size: 100px;
    color: #333;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    overflow: hidden;
    height: calc(100vh - .34rem);
    margin: .17rem .17rem .17rem .17rem;
    border-radius: 8px 8px;
    background: #fff;
}

.title-img,
.title-img image {
    width: 240px;
    height: 110px;
}

.item {
    height: 45px;
    width: 240px;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #d8e6ff;
    border-radius: 22.5px;
    color: #273b5b;
    margin-top: 18px;
}

.item-checked {
    background-color: #f2f6fc;
    color: #466aa3;
}

.item-box,
.item-text {
    margin-left: 20px;
}