html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
b{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

img {
    display: block;
    max-width: 100%;
}

a{
    text-decoration: none;
    color: #ba85e4;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #7c7c7c;
    background-color: #121212;
    font: 14px/1.2 'Arial', sans-serif;
    min-width: 320px;
    text-align: center;
}

.wrapper{
    height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 10px;
}

.header{
    background-color: #1c1c1c;
    border-bottom: 1px solid #242424;
    margin-bottom: 18px;
    padding: 10px 0;
}

.logo{
    color: #ba85e4;
    display: inline-flex;
    font-size: 34px;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: .04em 0 #e9f3f7, -.04em 0 #e9f3f7, 0 .04em #e9f3f7, 0 -.04em #e9f3f7;
    border-bottom: none;
}

@media screen and (max-width: 480px) {
    .logo{
        font-size: 28px;
    }
}

.main{
    flex-grow: 1;
    margin-bottom: 50px;
}

@media screen and (max-width: 480px) {
    .main{
        margin-bottom: 30px;
    }
}

.box{
    margin-bottom: 20px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    background-color: rgb(10, 14, 24);
    box-shadow: 0 5px 15px -7px rgb(0, 0, 0);
    overflow: hidden;
    background-color: #161616;
    border: 1px solid #1c1c1c;
}

@media screen and (max-width: 480px) {
    .box{
        flex-direction: column;
    }
}

.box:last-child{
    margin-bottom: 0;
}

.text{
    padding: 15px;
    line-height: 1.4;
}

.link{
    position: relative;
    display: ruby;
}

/* .link:before{
    content: "";
    height: 2px;
    width: 80%;
    background-color: #ba85e4;
    position: absolute;
    left: 0;
    top: 106%;
} */

.box-img{
    flex-shrink: 0;
    max-width: 240px;
    padding: 20px 0 15px 15px;
}

@media screen and (max-width: 480px) {
    .box-img{
        max-width: 100%;
        padding: 15px 15px 0 15px;
    }
}

.inner{
    border: 2px solid #fff;
    display: block;
}

.title{
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: left;
    background-color: #1c1c1c;
    border: 1px solid #242424;
    padding: 10px;
    color: #fff;
}

@media screen and (max-width: 480px) {
    .title{
        font-size: 16px;
    }
}

.footer{
    background-color: #1c1c1c;
    border-top: 1px solid #242424;
    padding: 15px 5px;
}

@media screen and (max-width: 480px) {
    .footer{
        padding: 10px 5px;
    }
}

.footer-mark{
    margin-bottom: 5px;
    display: inline-block;
    font-size: 17px;
    color: #ba85e4;
}