/*0D1321 1D2D44 3E5C76*/
/* 17252A 2B7A78 3AAFA9 DEF2F1 FEFFFF*/

/* 5680E9 84CEEB 5AB9EA C1C8E4 8860D0*/
body{
    width: 100%;
    height: 100%;
    overflow-x:hidden;

    background: rgb(132,206,235);
    background: radial-gradient(circle, rgba(132,206,235,1) 0%, rgba(86,128,233,1) 100%);
    background: #0D1321;
}

.title_text{
    font-family: Helvetica;
    font-size: 2rem;
    color: whitesmoke;
}

.text{
    font-family: Helvetica;
    font-size: 1.5rem;
    color: #DEF2F1;
}

.link{
    /*background-color: #3E5C76;*/
    text-decoration: underline;
    border-radius: 5px;
    padding: 2px;
}

.small_text{
    font-family: Helvetica;
    font-size: 1rem;
    color: #DEF2F1;
}
.underline{
    text-decoration:underline;
}

.align_center{
    text-align: center;
}
.align_right{
    text-align: right;
}

.main_box{
    border-radius: 10px;
    
    margin-left: 25%;
    width: 50%;
    height: 100%;
    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;

}

.box{
    background: rgb(136,96,208);
    background: radial-gradient(circle, rgba(136,96,208,1) 0%, rgba(86,128,233,1) 100%);
    background: #1D2D44;
    height: max-content;
    padding: 10px;
    border-radius: 15px;
}

.flex-container {
    padding-top: 20px;
    display: flex;
}

.flex-vertical {
    flex-direction: column;
}

.flex-child {
    flex: 1;
    /*border: 2px solid yellow;*/
}  

.flex-child:first-child {
    margin-right: 20px;
} 



/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    
    background: transparent; 
    border-radius: 10px;
    
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #3E5C76; 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
   /* background: #1D1D42; */
   cursor: pointer;
  }
