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

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #000;
    color: #333333;
    font: normal 14px/22px 'Poppins', sans-serif;
    font-weight: 300;
}

.sv-main {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 10px;
}

.sv-content {
    background-color: white;
    border-radius: 4px;
}

.sv-content-header {
    padding: 32px;
}

.sv-content .avatar {
    width: 125px;
    height: 125px;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #c0c0c0;
    border-radius: 100%;
    margin: 0 auto;
    margin-bottom: 24px;
}

.sv-content h1 {
    padding-bottom: 5px;
    line-height: 1.3;
    font-size: 30px;
}

.sv-content img {
    max-width: 100%;
    vertical-align: bottom;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.sv-content .links {
    margin: 24px 0;
}

.sv-content .link {
    border: 1px solid #000;
    padding: 12px;
    border-radius: 25px;
    color: #000;
    display: block;
    margin: 0 auto;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    font-weight: 600;
}

@media only screen and (max-width: 320px) {
    .sv-content .link {
        max-width: 100% !important;
    }
}

.sv-content .link.active,
.sv-content .link:hover {
    background-color: #000;
    color: white;
}

.hightlight {
    color: #000;
    font-weight: bold;
}

.v-m-b-16 {
    margin-bottom: 16px;
}

.v-m-b-32 {
    margin-bottom: 32px;
}

.sv-reseller ul,
.sv-reseller ol {
    text-align: left;
    margin-left: 20px;
}