body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-color: #0F141F;
    margin-top: 110px;
}

.container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin-top: 40px;
}

.header {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    font-family: Bungee Shade, sans-serif;
    color: #FFFBDF;
    align-items: center;
    font-size: 25px;
    border-bottom: #fffbdf4f solid 1px;
    padding: 10px 0 10px 0;
    margin-bottom: 40px;
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: #0F141F;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.header-container h1 {
    animation: logo-animation 3s ease-in-out infinite;
}

.hamburger-menu{
    font-size: 50px;
    cursor: pointer;
    color: #FFFBDF;
    margin-left: auto;
    transition: 0.2s linear;
    position: relative;
    z-index: 1100;
}

.hamburger-menu button{
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

#hamburger-menu-list{
    position: fixed;
    width: 100%;
    height: auto;
    background-color: #414141cc;
    max-width: 1100px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    list-style-type: none;
    z-index: 80;
    font-family: hubballi, sans-serif;
    cursor: default;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: 0.3s linear;
    top: 98px;
}

#hamburger-menu-list ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-type: none;
}
#hamburger-menu-list a{
    color: white;
    text-decoration: none;
    text-shadow: 0px 0px 10px rgb(0, 0, 0);
}

#hamburger-menu-list.active{
    transform:translateX(-50%) translateY(-250px);
    transition: 0.3s ease-out;
}

.hamburger-menu:hover i{
    transform: scale(1.1);
    transition: 0.2s linear;
    background: linear-gradient(to bottom, #20e440, #d5e21a, #801313);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* https://chatgpt.com/share/69ec982a-f53c-83eb-9e1a-63124bd6f74e*/

.progress-container1 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #FFFBDF;
    font-family: bungee shade, sans-serif;
}

.progress-container1 h2 {
    align-self: flex-start;
    font-size: 38px;
}

.step-container{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 250px;
}

.step1,
.step2,
.step3{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    background-color: #FFFBDF;
    position: relative;
    color: #000000;
    font-size: 60px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: 0.1s linear;
    box-shadow: 0px 0px 7px #FFFBDF;
}

.step1:hover,
.step2:hover,
.step3:hover{
    transform: scale(1.1);
    transition: 0.1s linear;
}

.step1:nth-child(1) {
    border-bottom: 3px solid #20e440;
}

.step1:nth-child(2) {
    top: 40%;
    border-bottom: 3px solid #20e440;
}

.step1:nth-child(3) {
    top: 80%;
    border-bottom: 3px solid #20e440;
}

.step1:nth-child(4) {
    top: 120%;
    border-bottom: 3px solid #20e440;
}

.step2:nth-child(3) {
    top: 40%;
    border-bottom: 3px solid #d5e21a;
}

.step2:nth-child(2) {
    top: 80%;
    border-bottom: 3px solid #d5e21a;
}

.step2:nth-child(1) {
    top: 120%;
    border-bottom: 3px solid #d5e21a;
}

.step2:nth-child(4) {
    border-bottom: 3px solid #d5e21a;
}

.step3:nth-child(1) {
    border-bottom: 3px solid #801313;
}

.step3:nth-child(2) {
    top: 40%;
    border-bottom: 3px solid #801313;
}

.step3:nth-child(3) {
    top: 80%;
    border-bottom: 3px solid #801313;
}

.step3:nth-child(4) {
    top: 120%;
    border-bottom: 3px solid #801313;
}

.progress-container2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    color: white;
    font-family: bungee shade, sans-serif;
}

.progress-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

#unroll-menu-list,
#unroll-menu-list2,
#unroll-menu-list3 {
    position: relative;
    width: 90%;
    height: auto;
    background-color: #ddf2ff;
    display: none;
    font-family: hubballi, sans-serif;
    padding: 15px;
}

#unroll-menu-list ol,
#unroll-menu-list2 ol,
#unroll-menu-list3 ol {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #001B74;
    list-style-type: upper-roman;
    font-size: 25px;
    gap: 10px;
    font-weight: 900;
}

#unroll-menu-list a,
#unroll-menu-list2 a,
#unroll-menu-list3 a{
    color: #000000;
    text-decoration: none;
    font-size: 24px;
    margin-right: 20px;
}

#unroll-menu-list.active1,
#unroll-menu-list2.active1,
#unroll-menu-list3.active1 {
    display: block;
}

.progress-card-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #e21a1a;
    color: white;
    padding: 20px;
    font-family: bungee shade, sans-serif;
    color: #000000;
    font-size: 22px;
    cursor: pointer;
    border: none;
    border-bottom-right-radius: 25px;
}
.progress-card-button i{
    font-size: 40px;
    transition: 0.1s linear;
}

.progress-card-button:hover i {
    transform: scaleY(1.3);
    transition: 0.1s linear;
}

.progress-card-button:first-child {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    background-color: #20e440;
    border-bottom-right-radius: 0;
}
.progress-card-button:nth-child(3) {
    background-color: #eeff00;
    border-bottom-right-radius: 0;
}

.question-button {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    background-color: #FFFBDF;
    padding: 20px;
    height: auto;
    margin-top: 60px;
    border-radius: 20px;
    color: #000000;
    font-size: 22px;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.question-button i {
    font-size: 40px;
    transition: 0.1s linear;
}

.question-button:hover i {
    transform: scaleX(1.3);
    transition: 0.1s linear;
}

@media (max-width: 700px) {
    .header{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 0;
    }

    .header-container{
        flex-direction: column;
    }

    .hamburger-menu{
        margin-left: 0;
        font-size: 35px;
    }

    h1{
        font-size: 45px;
    }

    .container{
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .step-container{
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
    }

    .step2:nth-child(1) {order: 4;}
    .step2:nth-child(2) {order: 3;}
    .step2:nth-child(3) {order: 2;}
    .step2:nth-child(4) {order: 1;}
    /*https://chatgpt.com/share/69f5fd27-6590-83eb-9552-24013c9768ab*/

    .progress-container1 h2{
        align-self: center;
    }

    .progress-container2{
        align-items: center;
    }

    .progress-container2{
        padding: 0px 10px;
    }

    #hamburger-menu-list{
        top: 141px;
    }

    .progress-container1{
        margin-top: 50px;
    }

    .question-button{
        margin-bottom: 30px;
    }
}

@media (min-width: 701px) and (max-width: 1200px){
    .header{
        padding-left: 20px;
        padding-right: 10px;
    }

    .container{
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .step-container{
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
    }

    .step2:nth-child(1) {order: 4;}
    .step2:nth-child(2) {order: 3;}
    .step2:nth-child(3) {order: 2;}
    .step2:nth-child(4) {order: 1;}

    .progress-container1 h2{
        align-self: center;
    }

    .progress-container2{
        align-items: center;
    }

    .progress-container2{
        padding-left: 20px;
        padding-right: 20px;
    }
}

@keyframes logo-animation {
    0% {
        letter-spacing: 0px;
    }
    50% {
        letter-spacing: 5px;
        transform: rotate(1deg);
    }
    100% {
        letter-spacing: 0px;
    }
}