@font-face {
    src: url("../assets/font/Rubik-Bold.ttf");
    font-family: Rubik;
    font-weight: 700;
}

@font-face {
    src: url("../assets/font/Rubik-Medium.ttf");
    font-family: Rubik;
    font-weight: 500;
}

@font-face {
    src: url("../assets/font/Rubik-Regular.ttf");
    font-family: Rubik;
    font-weight: 400;
}


*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    position: relative;
}


body {
    position: relative;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
}

.container {
    width: 144rem;
    margin: 0 auto;
}

.header {
    border-radius: 1% 1% 56% 50%;
    padding-top: 6.7rem;
    padding-bottom: 5.4rem;
}

.logo {
    margin: 0 10rem;
}

.logo img {
    width: 300px;
}

.description {
    width: 124rem;
    margin: 0 auto;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .3),
    -23px 0 20px -23px rgba(6, 147, 227, 1),
    23px 0 20px -23px rgba(85, 230, 70, 0.87),
    0 0 40px rgba(0, 0, 0, .1) inset;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
}


.title {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 7.5rem;
    text-align: center;
    color: rgb(87, 136, 230);
    text-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.69);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    display: inline-block;
    cursor: none;

    &:hover {
        transform: scale(1.1) translateY(-1px);
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    }

}

.sub-title {
    margin-top: 4rem;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    text-align: center;
    color: #282828;
}

.progress-container {
    display: flex;
    margin-top: 8rem;
    width: 100%;
    max-width: 65rem;
    background: #e0e7ff;
    border-radius: 1rem;
    padding: .5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}


.progress-bar {
    width: 0;
    height: 1rem;
    background: rgb(87, 136, 230);
    border-radius: 1rem;
    transition: width 2s ease-out;
}

.progress-text {
    position: absolute;
    right: -44px;
    top: 1px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
}


.footer {
    margin-top: 4rem;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    text-align: center;
    color: #282828;
}

@media screen and (max-width: 1440px) {
    html {
        font-size: 60.25%;
    }
}

@media screen and (max-width: 1340px) {
    html {
        font-size: 58.25%;
    }
}

@media screen and (max-width: 1220px) {
    html {
        font-size: 57%;
    }
}

@media screen and (max-width: 1170px) {
    html {
        font-size: 56.25%;
    }

    .header {
        padding-bottom: 13.4rem;
    }

    .content {
        margin: 0 auto;
        padding-top: 9rem;
        padding-bottom: 14rem;
    }

    .title {
        font-size: 9.5rem;
    }

    .sub-title {
        font-size: 3rem;
    }


    .progress-container {
        max-width: 70rem;

    }

    .progress-text {
        right: -43px;
        top: 0;
        font-size: 2rem;
    }

    .footer {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 50%;
    }

    .header {
        padding-bottom: 37rem;
    }

    .content {
        white-space: normal;
        word-wrap: break-word;
        padding-top: 11rem;
        padding-bottom: 11rem;
    }

    .title {
        font-size: 13.5rem;
    }

    .sub-title {
        margin-top: 12rem;
        font-size: 3.5rem;
    }

    .progress-container {
        margin-top: 12rem;

    }

    .progress-bar {
        height: 2rem;

    }

    .progress-text {
        right: -62px;
        top: -1px;
        font-size: 2.7rem;
    }

    .footer {
        margin-top: 8rem;
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 550px) {
    html {
        font-size: 45%;
    }
}

@media screen and (max-width: 426px) {
    html {
        font-size: 38%;
    }

    .header {
        padding-bottom: 32rem;
    }

    .content {
        padding-top: 20rem;
        padding-bottom: 17rem;
    }

    .title {
        font-size: 21.5rem;
    }

    .sub-title {
        width: 122rem;
        font-size: 6.5rem;
    }

    .progress-container {
        max-width: 90rem;
        padding: 1rem;
    }

    .progress-bar {
        height: 3rem;
    }

    .progress-text {
        right: -80px;
        font-size: 5rem;
    }

    .footer {
        width: 122rem;
        font-size: 6.5rem;
    }
}