#main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

#main strong {
    font-weight: 900;
}

.main-section {
    width: 100%;
    height: auto;
    max-width: 1920px;
    margin: 0 auto;
}

.content-section {
    width: calc(100% - 320px);
}

.section-banner {
    font-family: Saira, EnterSansman, 'Courier New', Courier, monospace;
    color: #fff;
    font-style: italic;
    font-weight: bold;
    font-size: 3rem;
    font-weight: bold;
}

.section-description {
    font-family: Nunito, 'Courier New', Courier, monospace;
    color: #5B4DBB;
    font-weight: 600;
    font-size: 1.1rem;
}

#topBanner {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(89.96deg, #5354C0 24.21%, rgba(153, 154, 238, 0.6) 110.53%);
}

#topCarousel {
    display: block;
    width: 75%;
    margin: 2rem auto 4rem auto;
    position: relative;
}

#topCarousel > .carousel-inner, #topCarousel > .carousel-control-next, #topCarousel > .carousel-control-prev {
    z-index: 5;
}

#tutorialGlow {
    position: absolute;
    width: 29%;
    height: auto;
    left: -17%;
    top: 65%;
}

/* Overrides */

.carousel-control-next {
    right: -15%;
}

.carousel-control-prev {
    left: -15%;
}

.carousel-control-next-icon {
    background-image: url(../design/tutorial/arrow_l.png);
    transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
}

.carousel-control-next:hover .carousel-control-next-icon {
    background-image: url(../design/tutorial/arrow_r_p.png);
    transform: scaleX(1);
    -moz-transform: scaleX(1);
    -o-transform: scaleX(1);
    -webkit-transform: scaleX(1);
}

.carousel-control-prev-icon {
    background-image: url(../design/tutorial/arrow_l.png);
}

.carousel-control-prev:hover .carousel-control-prev-icon {
    background-image: url(../design/tutorial/arrow_r_p.png);
    transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 2.125rem;
    height: 3.313rem;
}

.carousel-indicators [data-bs-target] {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    margin-left: 1rem;
    margin-right: 1rem;
    background-color: #d8d4d4;
    opacity: 1;
}

.carousel-indicators .active {
    background-color: #5854c4;
}

.carousel-indicators {
    bottom: -4rem;
}

@media screen and (max-width: 1030px) {

    .content-section {
        min-height: unset;
    }

    #mainTutorial .content-section {
        width: 100%;
    }

    #topBanner {
        font-size: 1.88rem;
        text-indent: unset;
    }
}

@media screen and (max-width: 760px) {
    #topCarousel {
        width: 100%;
    }

    #tutorialGlow {
        left: -5%;
    }

    .carousel-control-next {
        right: 0;
    }

    .carousel-control-prev {
        left: 0;
    }

    #topBanner {
        font-size: 1.45rem;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        width: 1.5rem;
        height: 2.24rem;
    }

    .carousel-indicators [data-bs-target] {
        width: 0.8rem;
        height: 0.8rem;
        border-radius: 50%;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .section-description {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 420px) {
    #topBanner {
        font-size: 1.25rem;
        padding: 1rem;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        width: 1rem;
        height: 1.49rem;
    }
}