@font-face {
    font-family: 'Toxigenesis';
    src: url('../fonts/toxigenesis bd.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

html, body {
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.nav-logo {
    height: 90px;
    margin: -40px;
}

.header {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fcf9f415;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    height: 90px;
    width: 1200px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0px 0px 20px rgba(41, 8, 8, 0.1);
    z-index: 1000;
    transition: top 0.5s ease-in-out, background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.header.hidden {
    top: -120px;
}

.navbar-white {
    background-color: #fcf9f4ce !important;
}

.play-button:hover{
    transform: scale(1.2);
    color:#2f1735;
    background: #ffffff;
}

.play-button{
    font-family: Commissioner, sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    color:#2f1735;
    background: #f8f1ee;
    border: none;
    border-radius: 7px 30px;
    transition: box-shadow 0.3s ease, transform 0.3s, background 0.3s ease;
    transform: scale(1.10) translateZ(0px);
    padding: 8px 20px;
}

.play-button-white .play-button {
    background: #3392ff !important;
}

.dark-play-border .play-button:hover{
    background: #42d3ff !important;
}

body {
    background-color: #f8f1ee;
    font-family: Geologica, sans-serif;
}

.server-name {
    font-family: Commissioner, sans-serif;
    margin-top: 10px;
    font-size: 8.8rem;
    font-weight: 800;
    background: #ffffff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.block-title{
    font-family: Commissioner, sans-serif;
    font-size: 7rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: color(#fff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}
    
.block-title-blue{
    background: linear-gradient(to top, #2b6aff, #4af0fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.block-title-green{
    background: linear-gradient(to top, #00ad57, #70d62d);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.block-title-aqua{
    background: linear-gradient(to top, #276d99, #37c4af);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.block-title-yellow{
    background: linear-gradient(to top, #f5731d, #fab940);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.block-title-gray{
    background: linear-gradient(to top, #4c4163, #726883);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.block-title-iris{
    background: linear-gradient(to top, #8b3ace, #db80ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.block-description {
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
    margin-top: 90px;
    margin-bottom: -10px;
    text-align: center;
}

.block-description-blue {
    color: #446db1;
}

.block-description-yellow {
    color: #bd5e39;
}

.block-description-aqua {
    color: #32707e;
}

.block-description-gray {
    color: #4d4b68;
}

.block-description-green {
    color: #3c7a41;
}

.block-description-iris {
    color: #763eaa;
}

.block-sec-desc{
    text-align: center;
    margin: 0 15%;
    font-size: 1.9rem;
    font-weight: 400;
    color: #fff;
}

.block-sec-desc-yellow{
    color: #db9f66;
}

.block-sec-desc-aqua{
    color: #69b5b8;
}

.block-sec-desc-gray{
    color: #8a84a3;
}

.block-sec-desc-iris{
    color: #a97fc5;
}

.scroll {
    margin-top: 70px;
    margin-bottom: 250px;
    margin-inline: auto;
    width: 60px;
    height: 60px;
    position: relative;
    animation: down 1s infinite;
    -webkit-animation: down 1s infinite;

    &::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 25px;
        width: 25px;
        height: 25px;
        border-left: 4px solid #ffffff;
        border-bottom: 4px solid #ffffff;
        transform: rotate(-45deg);
    }
}

@keyframes down {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translate(0);
    }
}

@-webkit-keyframes down {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translate(0);
    }
}

.header-about {
    font-family: Commissioner, sans-serif;
    margin-left: 14%;
    margin-right: 14%;
    margin-top: 10px;
    text-align: center;
    font-weight: 400;
    font-size: 2.4rem;
    color: #ffffff;
}

.header-update {
    font-family: Commissioner, sans-serif;
    margin-left: 14%;
    margin-right: 14%;
    margin-top: 300px;
    text-align: center;
    font-weight: 500;
    font-size: 3.5rem;
    color: #ffffff;
}

.heart-icon {
    width: 170px;
}

.closing-text {
    padding-top: 20px;
    margin-left: 14%;
    margin-right: 14%;
    text-align: center;
    font-weight: 500;
    font-size: 2.4rem;
    background: #ffffff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nexteam-logo{
    width: 50px;
    height: auto;
    margin-right: 10px;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .nexteam-logo{
        width: 35px;
        height: auto;
        margin-right: 10px;
        margin-top: 8px;
    }
}

.nexteam-text {
    font-family: Toxigenesis, sans-serif;
    font-size: 3rem;
    color: #ffffff;
    text-align: center;
    margin-top: 8px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 20px;
}

.hero-inner {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
}

#gradient-canvas {
    position: absolute;
    width:100%;
    height:100%;
    --gradient-color-1: #2c38e0;
    --gradient-color-2: #2b5cff;
    --gradient-color-3: #30c4ff;
    --gradient-color-4: #217aff;
}

.hero-content {
    max-width: 1260px;
    text-align: center;
    z-index: 1;
}

.hero-wrapper-end {
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
}

.hero-box {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    min-width: 100%;
    max-height: 925px;
    min-height: 570px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 12px;
    padding: 40px;
    z-index: 1;
}

.hero-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background: linear-gradient(135deg, #2c38e0, #217aff, #2c38e0, #217aff);
    background-size: 150% 150%;
    animation: moveGradient 11s infinite linear;
    z-index: -1;
}

@keyframes moveGradient {
    0% { background-position: 0% 0%; }
    50% { background-position: 200% 200%; }
    100% { background-position: 0% 0%; }
}

.nav-link {
    font-family: Geologica, sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #f8f1ee;
    margin: 0 10px;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 100px;
    padding: 2px;
    text-decoration: none;
    transition: border-color .3s ease, background-color .3s ease, color .3s ease;
}

.nav-link:hover{
    border-color: #ffffff;
    color: #ffffff;
    background-color: transparent;
}

.dark-border .nav-link:hover {
    border-color: #4d3353 !important;
}

.dark-text .nav-link {
    color: #4d3353 !important;
}

.npc-card {
    flex-direction: column;
    height: 560px;
    max-width: 450px;
    border-radius: 45px;
    text-align: center;
    font-weight: 900;
    font-size: 42px;
    padding-top: 25px;
    line-height: 100%;
}

.architect-card {
    background: linear-gradient(to bottom, #89db45 20%, #00684a);
    color: #268f11;
}

.engineer-card {
    background: linear-gradient(to bottom, #ffa033 20%, #be110b);
    color: #e92300;
}

.explorer-card {
    background: linear-gradient(to bottom, #796f8a 20%, #2f293b);
    color: #2f293b;
}

.roboticist-card {
    background: linear-gradient(to bottom, #f8d950 20%, #df6016);
    color: #ff6600;
}

.technician-card {
    background: linear-gradient(to bottom, #8cb7c7 20%, #2e3d6e);
    color: #3a5885;
}

.npc-icon {
    width: 15%;
    margin-bottom: 5px;
}

.npc-desc {
    margin-top: -13px;
    font-size: 21px;
    font-weight: 400;
    color: #fff;
}

.npc-model-a {
    position: relative;
    height: auto;
    max-width: 152%;
    right: 15%;
    top: -45px;
}

.npc-model-b {
    position: relative;
    height: auto;
    max-width: 105%;
    right: -5%;
    top: -20px;
}

.npc-model-d {
    position: relative;
    height: auto;
    max-width: 90%;
    top: -25px;
}

.npc-model-f {
    position: relative;
    height: auto;
    max-width: 88%;
    top: -35px;
}

.npc-model-c {
    position: relative;
    height: auto;
    max-width: 100%;
    top: -15px;
}

.market-title{
    margin-bottom: 20px;
    margin-left: 30px;
    color: #503541;
    font-weight: 700;
    font-size: 2.5rem;
}

.market-desc{
    font-size: 21px;
    margin: 0 20px;
    color: #855365;
}

.market-img{
    image-rendering: optimizeQuality;
    width: 100%;
    height: auto;
    filter: saturate(1.2);
}

.market-section{
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    max-width: 1400px;
    margin-top: 200px;
}

.market-left-section{
    display: flex;
    flex-direction: column;
    background-color: #f0e7e7;
    padding-top: 20px;
    border-radius: 50px;
    flex: 9;
    max-width: 1000px;
    min-width: 350px;
    min-height: 612px;
    max-height: 612px;
    overflow: hidden;
}

.market-right-section{
    display: flex;
    text-align: center;
    flex-direction: column;
    background-color: #f0e7e7;
    border-radius: 50px;
    flex: 3;
    max-width: 350px;
    min-height: 612px;
    overflow: hidden;
}

.list-item {
    font-size: 23px;
    border-bottom: 3px solid #ddd4d4;
    padding: 10px 70px;
    padding-left: 100px;
    text-align: left;
    margin-top: 7px;
    color: #855365;
}

.version{
    display: flex;
    gap: 50px;
}

.version-section{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0;
    max-height: 640px;
    max-width: 620px;
    text-align: center;
    border-radius: 50px;
    background-color: #f0e7e7;
    overflow: hidden;
}

.version-title{
    margin-left: 20px;
    margin-right: 20px;
    color: #503541;
    font-weight: 700;
    font-size: 2.6rem;
}

.version-desc{
    font-size: 21px;
    margin-left: 40px;
    margin-right: 40px;
    color: #855365;
}

.triangle-wrapper {
    align-items: center;
    width: 150%;
    height: auto;
    display: block;
}

.triangle-svg {
    width: 100%;
    height: auto;
    display: block;
}

.mb-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    width: 85%;
    margin-bottom: 10px;
    image-rendering: optimizeQuality;
    z-index: 1;
    filter: drop-shadow(0 10px 10px #3f133f79) contrast(1.3) saturate(1.3);
}

.nano{
    display: flex;
    gap: 20px;
}

.nano-section{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0;
    min-height: 440px;
    max-height: 490px;
    max-width: 450px;
    text-align: center;
    border-radius: 50px;
    background-color: #f0e7e7;
    overflow: hidden;
}

.nano-title{
    margin-left: 20px;
    margin-right: 20px;
    color: #503541;
    font-weight: 700;
    font-size: 2.1rem;
}

.nano-img {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    width: 40%;
    margin-bottom: 10px;
    image-rendering: pixelated;
    z-index: 1;
    filter: drop-shadow(0 10px 10px #3f133f79) contrast(1.3) saturate(1.3);
}

.image{
    image-rendering: pixelated;
    width: 100%;
    height: auto;
    margin-top: 15px;
}

.seeds-img{
    image-rendering: optimizeQuality;
    width: 100%;
    height: auto;
    margin-top: 15px;
}

.badge{
    display: inline-block;
    min-width: 120px;
    padding: 8px 25px;
    font-weight: 400;
    font-size: 21px;
    margin-top: 50px;
    margin-left: 20px;
    margin-right: 20px;
    color: #fff;
    border-radius: 7px 25px;
    vertical-align: middle;
}

.badge-yellow{
    background: linear-gradient(to bottom, #fab940, #f5851d);
}

.badge-magenta{
    background: linear-gradient(to bottom, #ce4069, #9c0e51);
}

.badge-gray{
    background: linear-gradient(to bottom, #726883, #4c4163);
}

.badge-aqua{
    background: linear-gradient(to bottom, #37c4af, #276d99);
}

.badge-pink{
    background: linear-gradient(to bottom, #ff58e9, #b71bdf);
}

.badge-blue{
    background: linear-gradient(to bottom, #435fff, #350cc7);
}

.badge-green{
    background: linear-gradient(to bottom, #70d62d, #00ad57);
}

.badge-iris{
    background: linear-gradient(to bottom, #b576df, #8b3ace);
}

.full-section{
    justify-self: center;
    min-height: 950px;
    max-height: 1080px;
    max-width: 1400px;
    text-align: center;
    border-radius: 50px;
    background-color: #f0e7e7;
    overflow: hidden;
}

.full-title{
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 10px;
    color: #503541;
    font-weight: 700;
    font-size: 3.5rem;
}

.full-description{
    font-size: 21px;
    margin-left: 170px;
    margin-right: 170px;
    color: #855365;
}

.generation{
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .hero-inner {
        border-radius: 30px;
    }

    .server-name {
        margin-top: 30px;
        font-size: 4.3rem;
    }

    .header-update {
        margin-top: 300px;
        font-size: 2.7rem;
        color: #ffffff;
    }

    .header {
        display: none;
    }

    .header-about {
        margin-top: 30px;
        font-size: 1.8rem;
    }
    .scroll {
        margin-top: 70px;
    }
    
    .heart-icon {
        width: 150px;
    }
    
    .closing-text {
        padding-top: 20px;
        margin-left: -5px;
        margin-right: -5px;
        font-size: 1.7rem;
    }
    
    .nexteam-text {
        font-size: 2rem;
    }

    .nexteam-logo{
        width: 35px;
        height: auto;
        margin-right: 5px;
        margin-top: 8px;
    }

    .block-title{
        font-size: 4.3rem;
    }

    .block-description {
        font-size: 2.5rem;
        margin-bottom: 5px;
    }

    .block-sec-desc{
        font-size: 1.8rem;
        margin: 0 8%;
    }

    .npc-card {
        margin-left: 40px;
        margin-right: 40px;
        border-radius: 30px;
        font-size: 45px;
    }

    .npc-desc {
        margin-top: -13px;
        font-size: 24px;
    }

    .npc-model-a {
        position: relative;
        height: auto;
        max-width: 120%;
        right: 5%;
        top: -60px;
    }
    
    .npc-model-b {
        position: relative;
        height: auto;
        max-width: 80%;
        right: -5%;
        top: -20px;
    }
    
    .npc-model-c {
        position: relative;
        height: auto;
        max-width: 78%;
        top: -40px;
    }

    .npc-model-d {
        position: relative;
        height: auto;
        max-width: 80%;
        top: -30px;
    }

    .npc-model-f {
        position: relative;
        height: auto;
        max-width: 80%;
        top: -40px;
    }

    .market-title{
        margin-bottom: 20px;
        margin-left: 30px;
        font-size: 1.8rem;
    }

    .nextcoin-img{
        width: 60%;
        align-self: center;
    }
    
    .market-section{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        align-items: center;
        width: 100%;
        padding: 20px;
        margin-top: 10%;
    }
    
    .market-left-section{
        padding-top: 20px;
        flex: 1;
        max-width: 640px;
        min-width: 350px;
        min-height: 220px;
        max-height: 640px;
    }
    
    .market-right-section{
        padding: 30px;
        padding-bottom: 50px;
        flex: 2;
        min-width: 350px;
        max-width: 640px;
        min-height: 450px;
        max-height: 640px;
    }

    .nano{
        gap: 40px;
    }

    .nano-section{
        margin: 0 40px;
        padding-bottom: 0;
        min-height: 360px;
        max-height: 640px;
        min-width: 350px;
        max-width: 640px;
        border-radius: 30px;
    }

    .nano-title{
        margin-left: 20px;
        margin-right: 20px;
        font-size: 2.5rem;
    }

    .nano-img {
        bottom: 50px;
        margin-bottom: 10px;
    }

    .mb-img {
        left: 50%;
        transform: translateX(-50%);
        height: auto;
        width: 80%;
        margin-bottom: 0px;
    }

    .version-section{
        padding-left: 20px;
        padding-right: 20px;
        max-height: 640px;
        min-width: 350px;
        max-width: 640px;
        border-radius: 30px;
    }
    
    .version-title{
        margin-bottom: 10px;
        font-weight: 700;
        font-size: 2.5rem;
    }
    
    .version-desc{
        font-size: 24px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .badge{
        display: inline-block;
        min-width: 120px;
        padding: 8px 25px;
        font-weight: 400;
        font-size: 24px;
        margin-top: 40px;
        margin-left: 20px;
        margin-right: 20px;
        border-radius: 7px 25px;
        vertical-align: middle;
    }

    .hero-box {
        position: relative;
        overflow: hidden;
        color: #ffffff;
        min-width: 100%;
        max-height: 925px;
        min-height: 480px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 30px;
        padding: 40px;
        z-index: 1;
    }

    .list-item {
        font-size: 24px;
        border-bottom: 3px solid #ddd4d4;
        padding: 5px 30px;
        padding-left: 30px;
        margin-top: 5px;
    }

    .full-section{
        margin-left: 40px;
        margin-right: 40px;
        min-height: 350px;
        max-height: 1000px;
        min-width: 350px;
        max-width: 640px;
        border-radius: 30px;
    }
    
    .full-title{
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 10px;
        font-size: 2.5rem;
    }
    
    .full-description{
        font-size: 24px;
    }
}

@media (max-width: 480px) {

    .hero-inner {
        border-radius: 30px;
    }

    .server-name {
        margin-top: 5px;
        font-size: 3.5rem;
    }

    .header-update {
        margin-top: 140px;
        font-size: 2.5rem;
        color: #ffffff;
    }

    .header {
        display: none;
    }

    .header-about {
        margin-top: 10px;
        font-size: 1.8rem;
    }
    .scroll {
        margin-top: 70px;
    }
    
    .heart-icon {
        width: 130px;
    }
    
    .closing-text {
        padding-top: 20px;
        margin-left: -5px;
        margin-right: -5px;
        font-size: 1.4rem;
    }
    
    .nexteam-text {
        font-size: 1.4rem;
    }

    .nexteam-logo{
        width: 25px;
        height: auto;
        margin-right: 5px;
        margin-top: 8px;
    }

    .block-title{
        font-size: 3rem;
    }

    .block-description {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .block-sec-desc{
        font-size: 1.4rem;
        margin: 0 8%;
    }

    .npc-card {
        max-width: 350px;
        border-radius: 30px;
        font-size: 37px;
    }

    .npc-model-a {
        position: relative;
        height: auto;
        max-width: 160%;
        right: 15%;
        top: -35px;
    }
    
    .npc-model-b {
        position: relative;
        height: auto;
        max-width: 110%;
        right: -5%;
        top: -20px;
    }
    
    .npc-model-c {
        position: relative;
        height: auto;
        max-width: 105%;
        right: 5%;
        top: -20px;
    }

    .npc-model-d {
        position: relative;
        height: auto;
        max-width: 110%;
        top: -20px;
    }

    .npc-model-f {
        position: relative;
        height: auto;
        max-width: 110%;
        top: -25px;
    }

    .market-title{
        margin-bottom: 20px;
        margin-left: 30px;
        font-size: 1.8rem;
    }

    .nextcoin-img{
        width: 80%;
        align-self: center;
    }
    
    .market-section{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        align-items: center;
        width: 100%;
        padding: 20px;
        margin-top: 10%;
    }
    
    .market-left-section{
        padding-top: 20px;
        flex: 1;
        max-width: 400px;
        min-width: 350px;
        min-height: 220px;
        max-height: 320px;
    }
    
    .market-right-section{
        padding: 30px;
        flex: 2;
        min-width: 350px;
        max-width: 400px;
        min-height: 450px;
        max-height: 530px;
    }

    .nano{
        gap: 40px;
    }

    .nano-section{
        margin: 0 40px;
        padding-bottom: 0;
        min-height: 360px;
        max-height: 470px;
        min-width: 350px;
        border-radius: 30px;
    }

    .nano-title{
        margin-left: 20px;
        margin-right: 20px;
        font-size: 2rem;
    }

    .nano-img {
        bottom: 30px;
        margin-bottom: 10px;
    }

    .version-section{
        margin-left: 40px;
        margin-right: 40px;
        max-height: 640px;
        min-width: 350px;
        border-radius: 30px;
    }
    
    .version-title{
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 10px;
        font-weight: 700;
        font-size: 1.8rem;
    }
    
    .version-desc{
        font-size: 19px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .badge{
        display: inline-block;
        min-width: 120px;
        padding: 8px 25px;
        font-weight: 400;
        font-size: 19px;
        margin-top: 40px;
        margin-left: 20px;
        margin-right: 20px;
        border-radius: 7px 25px;
        vertical-align: middle;
    }

    .hero-box {
        position: relative;
        overflow: hidden;
        color: #ffffff;
        min-width: 100%;
        max-height: 925px;
        min-height: 480px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 30px;
        padding: 40px;
        z-index: 1;
    }

    .list-item {
        font-size: 19px;
        border-bottom: 3px solid #ddd4d4;
        padding: 5px 30px;
        padding-left: 30px;
        margin-top: 5px;
    }

    .full-section{
        margin-left: 40px;
        margin-right: 40px;
        min-height: 350px;
        max-height: 1000px;
        min-width: 350px;
        border-radius: 30px;
    }
    
    .full-title{
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 10px;
        font-size: 1.8rem;
    }
    
    .full-description{
    font-size: 21px;
    margin-left: 10px;
    margin-right: 10px;
}
}