@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;900&display=swap');

:root {
    --ws-color: #25D366;
    --ws-color-black: #1da14d;
    --ws-color-light: rgba(29, 161, 77, 0.5);
    --bs-body-bg: #eff3f6;
}
body {
    font-family: 'Nunito', sans-serif;
    padding-bottom: 32px;
}
.row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}
.header-bg {
    background: #12c2e9;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #f64f59, #c471ed, #12c2e9);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #f64f59, #c471ed, #12c2e9); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    height: 200px;
    width: 100%;
    position: absolute;
    top: 0;
}
header {
    position: relative;
    z-index: 1;
    margin: 74px auto 24px;
    padding: 24px;
    background-color: #fff;
    width: 90vw;
    max-width: 500px;
    border-radius: 24px;
    box-shadow: 0 0 24px rgb(0 0 0 / 24%);
}
header .title {
    margin: -74px auto 2rem;
    text-align: center;
}
header .title img {
    border-radius: 100px;
    border: 3px solid #fff;
    margin-bottom: .5rem;
    width: 100px;
    height: 100px;
}
header .title h1 {
    font-weight: 900;
    margin-bottom: 0;
}
header .title p {
    margin-bottom: 0;
}
.btn {
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-width: 2px;
}
@media (min-width: 340px) {
    .btn-lg {
        font-size: 1.25rem;
    }
}
.btn svg {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}
.btn-ws {
    background-color: var(--ws-color);
    border-color: var(--ws-color);
}
.btn-ws:hover, .btn-ws:active {
    background-color: var(--ws-color-black);
    border-color: var(--ws-color-black);
}
.btn-ws:focus {
    background-color: var(--ws-color-black);
    border-color: var(--ws-color-black);
    box-shadow: 0 0 0 0.25rem var(--ws-color-light);
}
.btn-ws:active:focus {
    box-shadow: 0 0 0 0.25rem var(--ws-color-light);
}
.social {
    width: 90vw;
    margin: 0 auto;
    display: flex;
    max-width: 500px;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}
.social .item {
    background-color: #fff;
    box-shadow: 0 0 16px rgb(0 0 0 / 12%);
    border-radius: 24px;
    padding: 16px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    transition: all .15s;
}
.social .item:hover {
    background-color: rgba(0, 0, 0, 0.0125);
}
.social .item img {
    width: 64px;
    height: 64px;
    border-radius: 64px;
    margin-right: 16px;
}
.social .item_info {

}
.social .item_info .social_name {
    font-size: 14px;
    position: absolute;
    right: 24px;
    bottom: 16px;
    line-height: 18px;
    opacity: .25;
}
.social .item_info .title {
    font-weight: bold;
    font-size: 12px;
}
.social .item_info .account {
    font-size: 14px;
    opacity: .5;
    margin-bottom: .5rem;
}
.social .item_info .link {
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
}
.social .item_info .link:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.emoji {
    font-weight: normal !important;
}
