.answer-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background-color: #6c757d;
    color: rgb(233, 234, 224);
}

html{
    margin: 0;
    overflow-x: hidden;
    scrollbar-width: 1px;
    background-color: rgb(60, 18, 199);
   
    color:rgb(142, 126, 247);
}
body{
    margin: 0px;
    background-color: rgb(216, 219, 220);
   
}

.jumbo{
    padding: 2%;
    margin: 1%;
    width: 100%;
    max-width: 1000px;
}

#workspace1{
    background-color: rgb(15, 163, 179);
    color: rgb(228, 227, 227);
    padding: 2%;
    margin: 1%;
    border-radius: 4px;
}

.anSpace{
    background-color:#adb5bd;
    color: rgb(228, 227, 227);
    padding: 22px;
    margin: 1%;
    border-radius: 4px;
    align-items: center;
    overflow: auto;
    
   
}
 .btn:focus{
    outline: none;
    box-shadow: none;
  
}


.buttons{
    display: flex;
   width: 100%;
    overflow-x: auto;
    text-align: center;
   justify-content: center;
}

.link{
    color: rgb(49, 221, 55);
}

code{
    font-family:'Courier New', Courier, monospace ;
    /* background-color: grey; */
    padding: 2px;
    /* border-radius: 3px; */
    color: rgb(109, 109, 109);
}
 
.line{
    width: 100%;
    display: flex;
    flex-direction: row;
}

.line:before, .line:after {
    content:"  ";
    flex : 1 1;
    border-bottom: 1px solid #797979;
    margin: auto;
}

.line span{
    padding: 3px;
    margin: 3px;
}

table,thead, tbody, tr, th, td{
    border: none;
}
tr{
    background-color:rgb(99, 99, 99);
    color:rgb(228, 227, 227)
}
tr:nth-child(odd){
    background-color:aliceblue;
    color:rgb(99, 99, 99)
}

.d-flex {
    align-items: center;
    
    
    justify-content: center;
}



nav{
    background-color:rgb(99, 99, 99);
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: rgb(99, 99, 99);
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background:rgb(99, 99, 99);
  }