body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background-color: rgb(0, 0, 0);
    
}

/* <!-----------------------------HEADER------------------------------------------> */



.scroll_nav {
    background: linear-gradient(to right, rgb(125, 125, 224), aqua);
    width: 87%;
    min-width: fit-content;
    border-radius: 20px;

    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;

    position: sticky;
    top: 0;
    padding: 0.5%;
    margin: 3%;

    align-self: center;
    opacity: 0.9;
    object-fit: scale-down;

}

#frontend_img {
    width: 80%;
    object-fit: contain;
    opacity: 1;
    justify-content: space-around;
    
}
.frontend_img_container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    
    margin-bottom: 20px;
    background: linear-gradient(to right , rgb(108, 175, 230), rgb(125, 125, 224));
}





/* <!------------------------------------------------------TOPIC GENERIC SECTION----------------------------------------------------> */

.topic {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 97%;
    padding: 20px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    
    text-size-adjust: auto;
    flex-grow: 1;
    background-color: aqua;
    /* background: linear-gradient(to right, rgb(125, 125, 224), aqua); */
    background: linear-gradient(to right , rgb(108, 175, 230), rgb(125, 125, 224));
}


/* <!------------------------------------------------------INTERNAL GENERIC SECTION----------------------------------------------------> */
.p {
    width: 95%;
    display: flex;
    flex-direction: column;
    
    text-align: left;
    margin: 2%;
    padding: 2%;
    background-color: aquamarine;
    border-radius: 20px;
    overflow: hidden;
}


/* <!------------------------------------------------------HTML TAG SECTION------------------------------------------------> */
.html1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: red solid 2px;
    background-color: black;
    color: rgb(255,191,0);
    font-weight: bold;
    
    
}

@media (max-width: 900px){
    .html1 {
        display:flex;
        flex-wrap: wrap;
    }
    
}


.pre_contain {
    /* max-width: 50%; */
    background-color: rgb(62, 60, 60);
    color: white;
    overflow-x: auto;
    /* overflow-wrap: break-word; */
    /* box-sizing: border-box; */
    border: 2px solid gray;
    padding: 2px;
    /* white-space: pre-line; */
    white-space: pre;
    
    min-width: 600px;
    
}
.skeletons{
    background-color: #fff;
    width: auto;
    overflow: auto;
    /* margin: 0,5em; */
    

}
.skeletons_container{
    display: flex;
    flex-direction: row;
    justify-content:space-evenly;
    flex-wrap: wrap;
    /* justify-content:flex-start; */
    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr; */
    background-color: black;
}
/* <!------------------------------------------------------VS CODE  SECTION------------------------------------------------> */


.vscode_shortcuts {
    background-color: black;
    color: rgb(255,191,0);
    font-weight: bold;
    display: flex;
    justify-content: center;
    
}



/* <!------------------------------------------------------CSS  SECTION------------------------------------------------> */


.div__css-grid {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    
   /*  display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border: red solid 2px; */
    
    
   /*  display: grid;
  grid-gap: .5em;
  grid-template-columns: auto auto;
  grid-template-areas: "left right"; */
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;

    
}

.div__css-inner-block {
    max-width: 100%;
    background-color: black;
    color: rgb(255,191,0);
    font-weight: bold;
    
}

@media (max-width: 1400px){
    .div__css-main {
        display:flex;
        flex-wrap: wrap;
    }
    
}



/* <!------------------------------------------------------JS SECTION------------------------------------------------> */
.div__js-outer {
    width: 80%;
    align-self: center;
    margin: 2em;
}

.div__js-inner {
    box-sizing: border-box;
    background-color: rgb(62, 60, 60);
    color: rgb(255,236,0);
    
    /* margin: 5%; */
    padding: 0.5%;
    
}

.ul__js-array {
    margin: 0;
    padding: 1em;
}

.li__js-array{
    padding: 0.5em;
    font-size: 30px;
}


/* <!--------CODE COLORS----------> */

.clr-var  {
    color: rgb(86, 86, 247);
}  
.clr-var-name {
    color: lightblue;
} 
.clr-string {
    color: brown;
} 
.clr-open {
    color: yellow;
} 
.clr-arg { 
    color: lavender;
}
.clr-meth {
    color: tan;
} 
.clr-comment{
    display: inline-block;
    color:black;
    background-color: rgb(255, 255, 255);
    margin: 1em;
    padding: 0.2em;
    border-radius: 10px;
    border: solid black 2px;
}



















article {
    max-width: 330px;
}

table {
    border-top: 1px solid rgb(255,191,0);
    border-left: 1px solid rgb(255,191,0);
    overflow-x: auto;
    font-size: 20px;
}
td {
    border-bottom: 1px solid rgb(255,191,0);
    border-right: 1px solid rgb(255,191,0);
    padding: 10px;
}

tr {
    
    border-top: solid 2px white;
    width: auto;
}

thead,
th {
    border-bottom: 1px solid rgb(255,191,0);
    border-right: 1px solid rgb(255,191,0);
    max-width: 500px;
    background-color: #333;
    color: #fff;
    
}

ul {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin: 2%;
    padding: 2%;
    background-color: aquamarine;
    border-radius: 20px;
    overflow: hidden;

}





/* 
span {
    background-color: rgb(62, 60, 60);
    color: white;
    display: flex;
    flex-direction: column;
    margin: 5%;
    padding: 0.5%;
} */

pre {
    display: block;
    font-family: monospace;
    white-space: pre;
    margin: -2%;
    background-color: inherit;
}



b {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 2000;
    font-size: large;

}



a {
    border: 1px solid #9dd1ff;
    border-radius: 10px;
    color: white;
    background-color: black;
    padding: 15px 35px;
    text-decoration: none;

    margin: 1% 0;
    width: 10%;
    height: fit-content;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    
    display: flex;
    justify-content: center;
    flex-shrink: 1;
    transition: background-color 1s, transform 1s, color 1s,font-weight 1s;

    /* transform: translateY(-5px); */
    

    box-shadow: 4px 4px 1px -1px rgb(46, 34, 13);


}

a:hover {
    background-color: red; /* linear-gradient(to right, black, red); */
    /* background-color: rgb(143, 55, 55); */
    color: gold;
    font-weight: 800;
    box-shadow: none;
    transform: translateY(2px);
    /* transform: translatex(0.5px); */
    
    box-shadow: 3px 3px 1px -1px rgb(46, 34, 13);
}

a:active {
    background: linear-gradient(to right, red, yellow);
    color: rgb(27, 3, 3);
}

.a {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.float {
    float: right;
    width: 170px;
    height: 170px;
    margin-left: 15px;

}

p {
    overflow: hidden;
}

hr {
    background-color: inherit;
    border: 1px solid black;
    width: 95%;
    border-radius: 1px;
}





























