* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(to top right, #0072ff, #8e2de2);
    color: #fff;
    padding: 20px;
}

.container {
    max-width: 80%;
    margin: auto;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

.language {
    width: 100%;
}

.language ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
}

.language ul li {
    margin: 0 10px;
}

.language ul li a {
    text-decoration: none;
    color: inherit;
}

.language ul li.active:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    display: block;
    margin-top: 2px;
}

.logo-container {
    display: flex;
    margin: 0 auto;
    width: fit-content;
    align-items: center;
    margin-bottom: 10px;
}

.logo {
    width: 200px;
}

.logo-container h1 {
    font-size: 4rem;
}

.subtitle {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.btn-primary {
    background: #007bff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 40px;
}

.content {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.content .general,
.content .information {
    width: 45%;
}

.content .general h2,
.content .general h3 {
    margin-bottom: 10px;
}

.content .general p {
    font-weight: 400;
    margin-bottom: 15px;
}

.general-about {
    margin-bottom: 30px;
}

.general-characteristics {
    margin-bottom: 40px;
}

.general-characteristics ul {
    padding-left: 20px;
}

.general-characteristics ul li {
    margin-bottom: 10px;
}

.whitepaper {
    margin-bottom: 40px;
}

.whitepaper a {
    display: flex;
    width: fit-content;
}

.whitepaper a svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    margin-right: 7px;
}

.social-networks {
    display: flex;
}

.social-networks-mobile {
    display: none;
    justify-content: center;
}

.social-networks a {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.social-networks svg {
    width: 64px;
    height: 64px;
}

.social-networks a:nth-child(2) svg {
    width: 56px;
    height: 56px;
}

.social-networks svg path {
    fill: #fff;
}

/* === Roadmap Vertical === */
.roadmap-box {
    margin: 0 10%;
}

.roadmap-box ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
    transition: all 0.5s linear;
    top: 0
}

.roadmap-box ul:before {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    border: 1px dashed #fff;
    position: absolute;
    top: 0;
    left: 30px
}

.roadmap-box ul li {
    margin: 20px 60px 60px;
    position: relative;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 10px;
    line-height: 20px;
    width: 100%
}


.roadmap-box ul li > span {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    border: 1px solid #fff;
    position: absolute;
    top: 0;
    left: -30px
}

.roadmap-box ul li > span:before, .roadmap-box ul li > span:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #fff;
    position: absolute;
    left: -7.5px
}

.roadmap-box ul li > span:before {
    top: -10px
}

.roadmap-box ul li > span:after {
    top: 95%
}

.roadmap-box .title {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px
}

.roadmap-box .info:first-letter {
    text-transform: capitalize;
    line-height: 1.7
}

.roadmap-box .time span {
    position: absolute;
    left: -110px;
    color: #fff;
    font-size: 80%;
    font-weight: bold;
    text-align: center;
}

.roadmap-box .time span:first-child {
    top: -16px;
}

/* === Roadmap Vertical === */

.copyright {
    width: fit-content;
    margin: 10px auto;
}

@media screen and (max-width: 900px) {
    .container {
        max-width: 100%;
    }

    .content {
        flex-direction: column;
    }

    .content .general, .content .information {
        width: 100%;
    }

    .social-networks {
        display: none;
    }

    .social-networks-mobile {
        display: flex;
    }
}

#chart-container {
    width: 500px;
    margin: 0px auto;
    max-width: 100%;
}
canvas {
    width: 100% !important;
    height: 100% !important;
}