/*
1rem = 16px
*/

@font-face {
    font-family: 'twayfly';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_tway@1.0/twayfly.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Basic */
html, body {
    width: 100%;
    overflow-x: hidden;
}
body {
    word-break: keep-all;
    scroll-behavior: smooth;
}
a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
}
.bg-black {
    background-color: #151516 !important;
}
.bg-dark {
    background-color: #1C1C1E !important;
}
.text-white {
    color: #FFFFFF !important;
}
.text-opacity-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}
.text-opacity-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}
.border-rounded {
    border-radius: 1rem !important;
}
.visibility-hidden {
    visibility: hidden;
}
.m-16{
    margin: 1rem !important;
}
.mt-16 {
    margin-top: 1rem !important;
}
.mb-16 {
    margin-bottom: 1rem !important; 
}
.ml-16 {
    margin-left: 1rem !important;
}
.mr-16 {
    margin-right: 1rem !important;
}
.p-16{
    padding: 1rem !important;
}
.pt-16 {
    padding-top: 1rem !important;
}
.pb-16 {
    padding-bottom: 1rem !important;
}
.pl-16 {
    padding-left: 1rem !important;
}
.pr-16 {
    padding-right: 1rem !important;
}
.m-32{
    margin: 2rem !important;
}
.mt-32 {
    margin-top: 2rem !important;
}
.mb-32 {
    margin-bottom: 2rem !important;
}
.ml-32 {
    margin-left: 2rem !important;
}
.mr-32 {
    margin-right: 2rem !important;
}
.p-32{
    padding: 2rem !important;
}
.pt-32 {
    padding-top: 2rem !important;
}
.pb-32 {
    padding-bottom: 2rem !important;
}
.pl-32 {
    padding-left: 2rem !important;
}
.pr-32 {
    padding-right: 2rem !important;
}
.g-16{
    --bs-gutter-x: 1rem !important;
    --bs-gutter-y: 1rem !important;
}
.gx-16{
    --bs-gutter-x: 1rem !important;
}
.gy-16{
    --bs-gutter-y: 1rem !important;
}
.g-32{
    --bs-gutter-x: 2rem !important;
    --bs-gutter-y: 2rem !important;
}
.gx-32{
    --bs-gutter-x: 2rem !important;
}
.gy-32{
    --bs-gutter-y: 2rem !important; 
}
.m-section-space {
    margin-bottom: 160px !important;
}
@media (max-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .m-section-space {
        margin-bottom: 64px !important;
    }
} 

body {
    background: rgb(24,28,92);
    background: linear-gradient(0deg, rgba(24,28,92,1) 0%, rgba(255,255,255,1) 100%);
}

/* Main */
.main-view {
    padding: 64px 16px 32px;
}

.content-wrap {
    max-width: 680px;
    margin: 0 auto;
}

/* Header */
.profile-view {
    text-align: center;
}

.profile-img {
    width: 96px;
    height: 96px;
    border-radius: 48px;
    margin-bottom: 16px;    
}

.profile-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.link-wrap {
    margin-top: 32px;
}

.link-button {
    width: 100%;
    height: 58px;
    border-radius: 29px;
    border: 1px solid white;
    margin-bottom: 16px;
    transition: box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, border-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, background-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s;
    color: white;
}

.hapu {
    background: rgb(119,107,203);
    background: linear-gradient(0deg, rgba(119,107,203,1) 0%, rgba(237,234,250,1) 100%);
}

.loe {
    background: rgb(246,226,117);
    background: linear-gradient(0deg, rgba(246,226,117,1) 0%, rgba(204,229,174,1) 100%);    
}

.yona {
    background: rgb(111,139,180);
    background: linear-gradient(0deg, rgba(111,139,180,1) 0%, rgba(203,229,252,1) 100%);    
}

.naxia {
    background: rgb(190,172,172);
    background: linear-gradient(0deg, rgba(190,172,172,1) 0%, rgba(251,235,216,1) 100%);    
}

.ephta {
    background: rgb(149,199,207);
    background: linear-gradient(0deg, rgba(149,199,207,1) 0%, rgba(224,236,247,1) 100%);    
}

.link-button:hover {
    background-color: white;
    border-color: rgb(255, 255, 255);
    color: black;
}

.link-button:hover > a {
    color: black;
}

.link-button > a {
    display: block;
    width: 100%;
    line-height: 58px;
    text-align: center;
    color: white;
}

.link-text {
    font-weight: 700;
}