/* width */
 ::-webkit-scrollbar {
    width: 5px;
 }

 /* Track */
 ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(255, 95, 2, 0.548); 
    border-radius: 10px;
 }

 /* Handle */
 ::-webkit-scrollbar-thumb {
    background-color: rgb(255, 115, 1); 
    border-radius: 10px;
 }

 /* Handle on hover */
 ::-webkit-scrollbar-thumb:hover {
    background: 	#F4A460;   
 }

 
@media (orientation: landscape) {
   body {
     flex-direction: row;
   }
 }
 
 @media (orientation: portrait) {
   body {
     flex-direction: column;
   }
 }
 