/***** GLOBAK STYLES *****/

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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #2e2e2e;
    background: #E0EAFC; /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(left, #CFDEF3, #E0EAFC);
    background: -o-linear-gradient(left, #CFDEF3, #E0EAFC);
    background: linear-gradient(to right, #CFDEF3, #E0EAFC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-rendering: optimizeLegibility;
}

ul,
li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/***** MAIN BOX *****/

#container {
    width: 925px;
    height: 775px;
    background-color: #fff;
    box-shadow: 15px -10px 25px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    margin: 40px;
}

.image-box {
    height: 70%;
    background: url(/check_static/images/1.jpg);
    background-size: cover;
    background-attachment: scroll;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: #fff;
    position: relative;
    padding-bottom: 15%;
}

.name {
    font-size: 120%;
}

.twitter-name {
    letter-spacing: 1.4px;
}

/***** BUTTON *****/

.btn {
    position: absolute;
    top: 85%;
    left: 42%;
    width: 15%;
    height: 25%;
    border-radius: 50%;
    border: 4px solid #fff;
    z-index: 10;
    background: #43C6AC; /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #F8FFAE, #43C6AC); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #F8FFAE, #43C6AC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.btn:hover {
    cursor: pointer;
    transform: scale(1.2);
    transition: all 0.8s ease;
    box-shadow: 0 2px 10px #CFDEF3;
}

.btn:not(:hover) {
    transition: all 0.8s ease;
}

.btn:focus {
    outline: 0 !important;
}

.ion-plus-round {
    font-size: 500%;
    color: #fff;
}

/***** SOCIAL MEDIA BOX *****/

.social-media-box {
    height: 30%;
    display: flex;
    align-items: center;
}

.social-stats {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-around;
}

.social-stats div {
    flex: 1 1 0;
}

.social-stats div h4 {
    text-transform: uppercase;
    margin-bottom: 2px;
    color: #8e8e8e;
}

.social-stats div h2 {
    color: #555d6d;
    font-family: 'rawline', sans-serif;
}


/***** MEDIA QUERIES *****/

@media screen and (max-width: 500px) {

    .name {
        font-size: 100%;
    }

    .social-stats div h4 {
        font-size: 80%;
    }

    .social-stats div h2 {
        font-size: 150%;
    }

}

@media screen and (max-width: 425px) {

    .btn {
        top: 95%;
        width: 10%;
        height: 10%;
    }

    .ion-plus-round {
        font-size: 150%;
    }

    .social-stats {
        flex-direction: column-reverse;
        justify-content: center;
    }

    .social-stats div h4 {
        font-size: 100%;
        margin-top: 5px;
        margin-bottom: 0;
    }

    .social-stats div h2 {
        font-size: 100%;

    }

}