*{
    margin: 0;
    padding: 0;
  }
  
  body{
    box-shadow: inset -6px -6px 6px rgba(0,0,0,1); 
    font-family: 'Shojumaru', cursive;
    font-size: 1.5rem;
  }
  a{
    color:yellow;
    text-decoration:none;
  }
  .bg_grad_green{
    height: 100vh;
    background-image: repeating-linear-gradient(rgb(233, 80, 19),rgba(250, 80, 19, 0.3));
  }
  #head_name{
    position: relative;
    text-align: center;
    font-size: 2em;
    color:yellow;
    text-shadow: 2px 2px 4px #000000;
  }
  
  #fs_button{
    position: absolute;
    top:0;
    left:0;
    width:10%;
    max-width: 50px;
    min-width: 10px;
  }
  
  .result_container
  {
    overflow: scroll;
    text-align: center;
    margin: 0 3%;
    padding: 3%; 
    padding-top:0;  
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    background-color:rgba(201, 185, 98, 0.5);
    box-shadow: inset 0 0 6px rgba(0,0,0,1); 
    height:75vh;
  }
  .result_container p{
    line-height: 1.5em;
  }
  .result_container div:nth-child(1){
    font-size: 2em;
    grid-row: 1;
    margin: auto 0;
    padding: 0;
  }
  
  ::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  display:none;
  }
  
  ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 10px olivedrab;
  border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: yellowgreen; 
  box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
  }
  
  ::-webkit-scrollbar-thumb:hover {
  background: #7bac10;
  }
  
  .clear{
    text-align: center;
    background-color: #ff0000;
    margin: auto;
    padding: 10px;
    width:30%;
    margin-bottom: 10px;
    box-shadow: 0 0 6px rgba(0,0,0,0.5); 
  } 
  .clear:hover{
    box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
    cursor:pointer;
  }
  
  /*TABLETS and SMARTS LANDSCAPE*/
  @media only screen and  (max-width : 1024px) and (orientation : landscape) {
      a{
    text-decoration: none;
    color: black;
  }
    #head_name{
      text-align: center;
      font-size: 1em;
      color:black;
      text-shadow: 2px 2px 4px #ffffff;
    }

    .result_container{
    font-size:0.8em;
    line-height: 0px;
  }
  .name_box p{
    font-size: 10px;
  }
}
  /*TABLETS and Monitors*/
  @media only screen and  (max-width : 1024px)  and (orientation : portrait) {
      a{
    text-decoration: none;
    color: yellow;
  }
    #head_name{
      text-align: center;
      font-size: 1.5em;
      color:red;
      text-shadow: 2px 2px 4px #000000;
    }
  }
  
  /*SMARTPHONES*/
  @media only screen and (max-width: 412px) and (orientation : portrait)
  {
    #rules_container{
      line-height: 0px;
  text-align:center;
  border: solid;
  padding: 5px;
  width: 100vw;
  height:80%;
  overflow: scroll;
  }
    a{
    text-decoration: none;
    color: white;
  }
    body{width:100vw;}
    #head_name{
      text-align: center;
      font-size: 0.7em;
      color:white;
      text-shadow: 2px 2px 4px #000000;
    }
  .result_container{
    font-size:0.8em;
    line-height: 0px;
  }
  h2{
    font-size: 1.2em;
    margin: 5px;
    padding: 10px;
    text-decoration: underline;
  }
  .name_box p{
    font-size: 0.8em;
  }
  }