@import url('https://fonts.googleapis.com/css2?family=Dosis&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border;
    outline: none;
    list-style: none;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}
/* navbar designing */
nav{
    top: 0;
    overflow: hidden;
    display: block;
    position: fixed;
    width: 100%;
    color: white;
    height: 60px;
    background: #141519;
    z-index: 1;
 }
 nav header{
     font-size: 24px;
     font-family:Arial, Helvetica, sans-serif;
     cursor: pointer;
     position: absolute;
     font-family: 'PT Sans', sans-serif;
     top: 14px;
     left: 15px;
 }
 nav ul{
     float: right;
     margin-right: 20px;
 }
 nav ul li{
    list-style: none;
     display: inline-block;
     margin-top: 13px;
     font-family: 'Patrick Hand', cursive;
     font-size: 17px;
     padding: 5px 3px 5px 3px; 
     margin-right: 30px;
     text-transform: uppercase;
     display: inline-block;
 }
 nav ul li:hover{
     border-bottom: 5px solid white;
     transition: 0.2s;
 }
 nav ul li a{color: white;}
 
 label #menu,label #cancel{
     color: white;
     font-size: 30px;
     float: right;
     line-height: 50px;
     cursor: pointer;
     display: none;
     margin-right: 30px;
 }
 #cheaked{
     display: none;
 }
 
 
 @media (max-width:938px){
    nav ul li{
        font-size: 15px;
    }
 }
 @media (max-width:860px){
     label #menu{
         display: block;
     }
     header{
         margin-left: 20px;
         font-size: 16px;
     }
     ul{
         position: fixed;
         width: 100%;
         height: 100vh;
         background-color: #222324;
         top: 60px;
         left: -100%;
         transition: all .5s;
         text-align: center;
     }
     nav ul li a:hover{
         border: 4px solid white;
         padding: 10px 15px;
     }
     nav ul li:hover{
         border: none;
     }
     nav ul li{
         display: block;
         margin-top: 65px;
         width: 100%;
         line-height: 30px;
         font-size: 17px;
     }
     #cheaked:checked~ul{
         left: 0px;
     }
     #cheaked:checked~label #menu{
         display: none;
     }
     #cheaked:checked~label #cancel{
         display:block;
     }
 }





 /* container */


 .container{
    font-family: 'PT Sans', sans-serif;
     width: 60vw;
     margin: auto;
     padding: 32px 0;
     font-family: 'Dosis', sans-serif;
 }
 ol li{
     font-size: 22px;
     font-weight: 600;
 }
 h1{
     font-weight: 800;
     text-align: center;
     margin-top: 40px;
 }
 pre{
     box-shadow: 5px 4px 8px rgb(71, 70, 70);
 }