* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
  
html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}


.poppins-thin {
    font-family: "Poppins", serif;
    font-weight: 100;
    font-style: normal;
  }

body {
    position: relative;
    font-size: 24px;
    background-image: #ffffff;
    background-repeat: no-repeat;
    /* text-align: center; */
}
header {
    
    padding: 30px 15px;
    position: fixed;
    width: 100%;
    background-color: #000000;
    word-spacing: 20px;
    text-align: right;
    box-sizing: border-box;
    top: 0px;
    z-index: 1;
    font-size: 20px;
}

 main{
   position: relative;
 }
 
a{
  font-family: Poppins;
}

h1{
    background-color: rgb(255, 255, 255);
    font-family: "Poppins", serif;
    color: rgb(0, 0, 0);
    padding-bottom: 0px;
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: normal;
    text-align: center;
    margin-top: 80px;
}
 
 h2{
   text-align: center;
   font-size: 30px;
 }
 #board{
    max-width: 750px;
    height: 300%;
    background-color: rgb(0, 0, 0);
    border-radius: 30px;
    top: 40px;
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: hidden;
    white-space: nowrap;
    box-shadow: 8px 5px 9px rgb(0 0 0 / 2);
    
 }
 
 
 .story{
   white-space: nowrap;
   transition: transform 1s;
 
 }
 .story figure{
   width: 100%;
   display: inline-block;
   overflow: hidden;
   margin: 0 1rem;
 
 }

 .story figure img{
   width: 100%;
   aspect-ratio: 16/9;
 }
 figcaption{
   font-size: 20px;
   color: rgb(0 0 0);
   margin-top: 15px;
   position: relative;
   top: -10px;
   margin-left: 10px;
   background-color: #ffffff;
 
   
 }
 header li {
   display: inline-block;
   margin-right: 15px;
 }
 header li a {
   font-size: 20px;
   text-decoration: none;
   color: rgb(255, 255, 255);
   font-weight: bold;
   text-align: right;
 }
 header li a:hover{
   color: rgb(218, 86, 4);
   text-decoration: double;
 }
 
 #button{
   max-width: 900px;
   display: grid;
   grid-template-columns: 1fr  2fr 1fr;
   margin-top: 40px;
   justify-content: center;
     
 
 }
 #button a{
   font-size: 50px;
   justify-self: center;
 }
 #button span{
   color: rgb(240 240 240 / 1);
   font-size: 30px;
   justify-self: center;
   margin-top: 10px;
 }
 
 #button a:link, #button a:visited{
   color: rgb(255, 255, 255);
   text-decoration: none;
 }
 #button a:hover, #button a:focus{
   color: rgb(240 240 240 / 1);
   }
 
 @media (max-width: 600px){
   #board{
     height: 520px;
   }
   #button{
     margin-top: 40px;
   }
 }
 
 /*storyboard animation*/
 .story img{
   animation-duration: 4s;
   overflow: hidden;
   animation-fill-mode: forwards;
 }
 
 
 footer{
  font-family: Poppins;
  padding: 30px;
  text-align: right;
 }

  