body,
h2,
p,
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body {
    background: #F9F9F9;
}

.msg-box {
    width: 86%;
    margin: 0 auto;
    text-align: center;
}

.msg-box .img {
    margin-bottom: 2rem;
}

.msg-box .img img {
    width: 10rem;
    padding-top: 3rem;
}

.msg-box h2 {
    font-weight: normal;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.msg-box p {
    font-size: 0.6rem;
    color: #888;
    margin-bottom: 1rem;
    line-height: 150%;
}

.btn {
    display: block;
    width: 100%;
    text-align: center;
    color: #FFF;
    border: 1px solid #0997B8;
    background-color: #2AB5D6;
    border-radius: 8px;
    height: 1.8rem;
    line-height: 1.8rem;
    font-size: 0.8rem;
}

.btn-no {
    background-color: #FD0083;
    border: 1px solid #FD0083;
    color: #FFF;
}

.tags {
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

.tags li {
    float: left;
    color: black;
}

.tags li a {
    color: black;
    font-size: 18px;
}

.tag {
    background: #eee;
    border-radius: 3px 0 0 3px;
    color: #999;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 20px 0 23px;
    position: relative;
    margin: 0 10px 10px 0;
    text-decoration: none;
    -webkit-transition: color 0.2s;
}

.tag::before {
    background: black;
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: '';
    height: 6px;
    left: 10px;
    position: absolute;
    width: 6px;
    top: 10px;
}

.tag::after {
    background: #fff;
    border-bottom: 13px solid transparent;
    border-left: 10px solid #eee;
    border-top: 13px solid transparent;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
}

.tag:hover {
    background-color: crimson;
    color: white;
}

.tag:hover::after {
    border-left-color: crimson;
}