
body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ecebe4;
    text-decoration: none;

}
p{
    color:black;
    text-decoration: none;
}

  /*####################################################################################################*/
  /*now from now on it is the code of the hover mechanism*/

/* since 11/14/2021 it is empty and will never return */


/*####################################################################################################*/
/*from this point on this is the navigation bar*/
li, a, button{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 16;
    color:black;
    text-decoration: none;
}

header{
    display: flex;
    justify-content:center;
    align-items: center;
    padding: 30px 10%;
}
.Header{
    font-size:xx-large;
}
.Header:hover{
text-decoration: underline;
}

/* Article Organization starts here */



/* Footer  */
.note{
    padding: 1px 70px;
}
footer{
    background-color:rgba(255, 255, 255, 0);
    color: black;
    padding: 10px;
    border-radius: 5px;
    margin-top: auto;
}

.socials{
    list-style: none;
    
}
.github .linkedin{
    font-style: italic;
}
.socials li{
    display: inline-block;
    
}
.socials li a{
    transition: all 0.3s ease 0s;
    color: black;
}
.socials li a:hover{
    color: #ff0000;
    text-decoration: underline;
}
/* Footer End */


/* This is the beggining of the back button  */

.close-button {
    width: 40px;
    height: 40px;
    box-shadow: 0px 10 10px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background: #ecebe400;
    left: 0%;
    top: 50%;
    /* margin-top: -75px; */
    /* margin-left: -75px; */
    position: absolute;
    display: flex;
    /* z-index: 200; */
    text-indent: -9999px;
  }
  .close-button:before,
  .close-button:after {
    content: "";
    width: 55%;
    height: 2px;
    background: black;
    position: absolute;
    top: 48%;
    left: 22%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .close-button:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .close-button:hover:before {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 29%;
    left: 18%;
  }
  .close-button:hover:after {
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 67%;
    left: 18%;
  }
  
  /* this is the end of back button */
  
  
  .flex_explanantion {
    height: 200px;
    width: 80%;
    position: relative;
    text-align: center;
    left: 10%;
  
  }
  
  .classic .panel {
    width: 1000px;
    height: 1000px;
  }
  .classic .book {
    width: 600px;
    height: 1000px;
  }
  .classic {
    position: relative;
    display: grid;
    place-content: center;
    place-items: center;
  }
  
  
  
  