* {
    margin: 0;
    padding: 0;
}
.main-container {
    width: 100%;
    height: 100vh;
    /* background-color: aquamarine; */
    display: flex;
    font-size: 20px;
}
.nav-bar {
    width: 15%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    background-color: rgba(255, 226, 172, 0.603);
    box-sizing: border-box;
}
.nav-bar a {
    text-decoration: none;
    color: black;
}
#output-container {
    width: 85%;
    padding: 20px;
    line-height: 1.5;
    box-sizing: border-box;
    overflow-y: auto;
}
h1,
h2,
h3,
h4,
h5 {
    text-decoration: underline;
}
h1 {
    color: rgb(155, 4, 4);
}
h2 {
    color: rgb(252, 50, 50);
}
h3 {
    color: rgb(255, 153, 0);
}
.sub-container {
    /* padding-top: 20px;
    padding-left: 20px; */
    margin-top: 20px;
    margin-left: 20px;
    box-sizing: border-box;
}

.button-71 {
    background-color: #0078d0;
    border: 0;
    border-radius: 56px;
    cursor: pointer;
    display: inline-block;
    font-family: system-ui, -apple-system, system-ui, "Segoe UI", Roboto, Ubuntu,
        "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: 600;
    outline: 0;
    padding: 10px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    /* margin: 20px 20px; */
    color: #fff;
}
.button-71 a {
    color: #fff;
    text-decoration: none;
}
/*  */
.button-71:before {
    background-color: initial;
    background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
    border-radius: 125px;
    content: "";
    height: 50%;
    left: 4%;
    opacity: 0.5;
    position: absolute;
    top: 0;
    transition: all 0.3s;
    width: 92%;
}

.button-71:hover {
    box-shadow: rgba(255, 255, 255, 0.2) 0 3px 15px inset,
        rgba(0, 0, 0, 0.1) 0 3px 5px, rgba(0, 0, 0, 0.1) 0 10px 13px;
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .button-71 {
        padding: 10px 20px;
    }
}

span {
    color: #0078d0;
    font-family: monospace;
}

.home-page {
    background-color: #0078d0;
    background: linear-gradient(
        131deg,
        deepskyblue,
        darkviolet,
        blue,
        #ff0000,
        #65ff00
    );
    background-size: 300% 300%;
    animation: gradient-animation 5s ease infinite;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.home-page h1 {
    color: #fff;
    text-decoration: none;
    font-size: 10vw;
    animation: glow 1s ease-in-out infinite alternate;
}
@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #0074b3,
            0 0 40px #0074b3, 0 0 50px #0074b3, 0 0 60px #0074b3,
            0 0 70px #0074b3;
    }

    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #173748, 0 0 40px #173748,
            0 0 50px #173748, 0 0 60px #173748, 0 0 70px #173748,
            0 0 80px #173748;
    }
}

.eg{
    color: #FF5722;
    font-family: monospace;
    padding-left: 5%;
}
.syntax{
    color: rgb(237, 34, 255);
    font-family: 'Sometype Mono', monospace;
    font-weight: bold;
    padding-left: 5%;
}
.sub-point{
    padding-left: 5%;
}
.sub-list{
    padding-left: 2%;
}
.point{
    padding-left: 5%;
}
.footer{
    background: rgb(0, 0, 0);
    color: white;
    font-size: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15%;
    padding: 5px;
    box-sizing: border-box;
}
.footer .creator{
    font-size: 15px;
}
.footer .source{
    font-size: 12px;
    font-family: 'Mukta', sans-serif;
}
.footer .source a{
    color: #fff;
}