:root {
    --page-background-color: linear-gradient(115.36deg, rgb(41, 41, 41) 0%, rgb(0, 0, 0) 100%);
    --content-background-color: rgba(255, 255, 255, 0);
    --text-color: #ffffff;
    --primary-color: #37a0f4;
    --secondary-color: #8de1ec;
    --p-font-family: Manrope, sans-serif;
    --p-font-size: 18px;
    --p-font-weight: normal;
    --p-font-style: normal;
    --p-line-height: 140%;
    --p-text-transform: none;
    --h1-font-family: Oswald, sans-serif;
    --h1-font-size: 40px;
    --h1-font-weight: 300;
    --h1-font-style: normal;
    --h1-line-height: 120%;
    --h1-text-transform: none;
    --h2-font-family: Oswald, sans-serif;
    --h2-font-size: 28px;
    --h2-font-weight: normal;
    --h2-font-style: normal;
    --h2-line-height: 120%;
    --h2-text-transform: none;
    --h3-font-family: Oswald, sans-serif;
    --h3-font-size: 22px;
    --h3-font-weight: normal;
    --h3-font-style: normal;
    --h3-line-height: 120%;
    --h3-text-transform: none;
    --h4-font-family: Oswald, sans-serif;
    --h4-font-size: 18px;
    --h4-font-weight: normal;
    --h4-font-style: normal;
    --h4-line-height: 120%;
    --h4-text-transform: none;
    --pre-font-family: Manrope, sans-serif;
    --pre-font-size: nullpx;
    --pre-font-weight: normal;
    --pre-font-style: normal;
    --pre-line-height: null %;
    --pre-text-transform: none;
    --button-font-family: Manrope, sans-serif;
    --button-font-size: 16px;
    --button-font-weight: normal;
    --button-font-style: normal;
    --button-line-height: 140%;
    --button-text-transform: none;
    --primary-button-border-radius: 50px;
    --primary-button-border-style: solid;
    --primary-button-border-width: 0;
    --primary-button-border-color: #37a0f4;
    --primary-button-color: rgb(255, 255, 255);
    --primary-button-background: #37a0f4;
    --primary-button-font-size: 16px;
    --primary-button-font-weight: normal;
    --primary-button-font-style: normal;
    --primary-button-font-family: Manrope, sans-serif;
    --primary-button-line-height: 140%;
    --primary-button-text-transform: none;
    --primary-button-letter-spacing: #37a0f4;
    --secondary-button-border-radius: 50px;
    --secondary-button-border-style: solid;
    --secondary-button-border-width: 0;
    --secondary-button-border-color: #8de1ec;
    --secondary-button-color: #ffffff;
    --secondary-button-background: #8de1ec;
    --secondary-button-font-size: 16px;
    --secondary-button-font-weight: normal;
    --secondary-button-font-style: normal;
    --secondary-button-font-family: Manrope, sans-serif;
    --secondary-button-line-height: 140%;
    --secondary-button-text-transform: none;
    --secondary-button-letter-spacing: #8de1ec;
    --primary-button-hover-opacity: 80;
    --primary-button-hover-shadow: none;
    --primary-button-hover-color: rgb(255, 255, 255);
    --primary-button-hover-background: #37a0f4;
    --primary-button-hover-border-color: #37a0f4;
    --secondary-button-hover-opacity: 80;
    --secondary-button-hover-shadow: none;
    --secondary-button-hover-color: #ffffff;
    --secondary-button-hover-background: #8de1ec;
    --secondary-button-hover-border-color: #8de1ec;
}

body {
    background: var(--page-background-color);
}


.main-data {
    color: #FFF;
    margin: 50px auto;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.avatar {
    display: flex;
    justify-content: center;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 100%;
}
.avatar img {
    width: 100%;
}

h2 {
    color: var(--text-color);
    padding: 0;
    font-size: var(--h2-font-size);
    font-style: var(--h2-font-style);
    font-family: var(--h2-font-family);
    font-weight: var(--h2-font-weight);
    line-height: var(--h2-line-height);
    text-transform: var(--h2-text-transform);
    text-align: center;
}

p {
    color: var(--text-color);
    padding: 0;
    font-size: var(--p-font-size);
    font-style: var(--p-font-style);
    font-family: var(--p-font-family);
    font-weight: var(--p-font-weight);
    line-height: var(--p-line-height);
    text-transform: var(--p-text-transform);
    text-align: center;
}

.main-button {
    text-decoration: none;
    color: #FFF;
    cursor: pointer;
    display: flex;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0);
    padding-top: 7px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 7px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-color: #32AADD;
    background: #32AADD;
    width: 316px;
    padding: 16px 22px;
    text-align: center;
    border-style: var(--primary-button-border-style);
    border-width: var(--primary-button-border-width);
    border-radius: var(--primary-button-border-radius);
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.main-button span {
    font-size: calc(var(--primary-button-font-size) * 1.2);
    font-style: var(--primary-button-font-style);
    word-break: break-word;
    font-family: var(--primary-button-font-family);
    font-weight: var(--primary-button-font-weight);
    line-height: var(--primary-button-line-height);
    text-transform: var(--primary-button-text-transform);
    margin: 0 auto;
}

.main-button svg {
    width: 19.2px;
    height: 19.2px;
}
