* {
    box-sizing: border-box;
    font-family: sans-serif;
}

html, body {
    background: rgb(126, 126, 126);
}

#home {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box {
    background: #efe5e5;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 5px 15px 46px -12px #854CC0;
}

.box .background-image {
    background: url('https://preview.redd.it/n1cu742mw3g31.png?width=960&crop=smart&auto=webp&s=1cc8cf2f8f542cb97d2a41fb417fc573d83bc758');
    background-position: center;
    background-size: cover;
    background-repeat: none;
    height: 100px;
}

.box .content-area {
    padding: 20px;
}

.box .content-area .user-image {
    height: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box .content-area .user-image .circle {
    background: url('https://instagram.fgye1-1.fna.fbcdn.net/v/t51.2885-19/s150x150/117946052_300604064698136_8537185968142088899_n.jpg?_nc_ht=instagram.fgye1-1.fna.fbcdn.net&_nc_ohc=ksCARUSrw8gAX-G-fUe&oh=c6089fcba997ad852bf6dcbec50bc349&oe=5F6D1EA0');
    background-position: center center;
    background-size: cover;
    background-repeat: none;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    position: absolute;
    top: -75px;
    box-shadow: 0 0 41px -17px #854CC0;
}

.box .content-area .info-section .name {
    font-size: 2rem;
    text-align: center;
}

.box .content-area .info-section .position {
    font-size: 0.8rem;
    font-family: sans-serif;
    color: gray;
    text-align: center;
    margin-bottom: 20px;
}

.box .content-area .content-section {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.box .content-area .content-section #follow-button {
    font-family: sans-serif;
    font-size: 0.9rem;
    background: #854CC0;
    border: 1px solid #ffffff;
    padding: 10px 40px;
    color: #ffffff;
    border-radius: 5px;
    margin-right: 20px;
    cursor: pointer;
}

.box .content-area .content-section .email-button {
    font-family: sans-serif;
    font-size: 0.9rem;
    background: white;
    border: 1px solid #f2f2f2;
    padding: 10px 20px;
    color: #854CC0;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.box .content-area .content-section .email-button .fa-paper-plane {
    margin-right: 10px;
}

.box .content-area #social-media-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 0px;
    overflow: hidden;
    transition: all 0.4s ease-in;
}

.box .content-area #social-media-section.active {
    height: 50px;
}

.box .content-area #social-media-section a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    background: #eeeefe;
    margin-right: 20px;
    text-decoration: none;
    border-radius: 5px;
    color: #854CC0;
    position: relative;
    transition: all 0.4s ease-in;
    transform: translate3d(0, -50px, 0);
}

.box .content-area #social-media-section a:hover {
    background:#bdbdbd;
    color: #481580;
}

.box .content-area #social-media-section a:nth-child(4) {
    margin-right: 0;
}

.box .content-area #social-media-section.active a:nth-child(1) {
    transform: translate3d(0,0,0);
    transition-delay: 0;
}

.box .content-area #social-media-section.active a:nth-child(2) {
    transform: translate3d(0,0,0);
    transition-delay: 0.2s;
}

.box .content-area #social-media-section.active a:nth-child(3) {
    transform: translate3d(0,0,0);
    transition-delay: 0.3s;
}

.box .content-area #social-media-section.active a:nth-child(4) {
    transform: translate3d(0,0,0);
    transition-delay: 0.4s;
}

@media only screen and (min-width: 0px) and (max-width: 600px) {
    #home {
        padding: 0 20px;
    }
    /* .box {
        height: 95vh;
    } */
}

@media only screen and (min-width: 0px) and (max-width: 320px) {
    .box .content-area .content-section #follow-button {
        font-size: 0.7rem;
    }
}

@media only screen and (min-width: 0px) and (max-width: 320px) {
    .box .content-area .content-section .email-button {
        font-size: 0.7rem;
    }
}
