@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}

body{
    font-family: 'Poppins','Roboto',sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.navbar{
    height: 10vh;
    background-color:black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    
}

.yedaDadaLogo{
    height: 7vh;
    margin: 10px;
    padding-top: 4px;
}

.siteTitle{
    color: white;
    font-weight: 800;
    font-size: 25px;
}

.links{
    display: flex;
    align-items: center;
    justify-content:space-between;
    gap: 15px;
    margin: 10px;
    color: white;
}

.navlinks{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: all .2s ease;
}

.anavLinks:hover{
    background-color: white;
    color: black;
    padding: 7px;
    border-radius: 5px;
    
}

.anavLinks{
    text-decoration: none;
    color:
    white;
}






h1{
    color: white;
    text-align: center;
    margin: 10px;
    font-size: 25vh;
    text-align: center;
    

}


h1 span {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 1s ease-in-out infinite;
  }
  
  h1 span:nth-child(1) {
    animation-delay: 0s;
  }
  
  h1 span:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  h1 span:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  h1 span:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  h1 span:nth-child(5) {
    animation-delay: 0.8s;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

.content{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 78vh;
    width: 100%;
    background-color: black;
    color: white;
}

.left , .right{
    width: 15vw;
    border: 2px solid white;
    height: 95%;
    margin: 10px;
    border-radius: 5px;
    background-color: #5025d1;
    display: flex;
    align-items: center;
    justify-content: space-evenly;  
    flex-direction: column;
    
}

.hostingerLogo{
    height: 10vh;
}

.offerLink{
    text-decoration: none;
    color: white;
    font-weight: 700;
}

.center{
    height: 95%;
    width: 70vw;
    border: 2px solid white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;    
    flex-direction: column;
    gap: 10px;
}

.stories{
    background-color: white;
    width: 20vw;
    border-radius: 3px;
    text-align: center;
    
}

.storyLinks{
    text-decoration: none;
    color:black;
    text-align: center;
    font-weight: 800;
    font-size: 20px;
}



.footer{
    height: 10vh;
    width: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.foot{
    text-decoration: none;
    color: white;
    font-weight: 700;
}


@media( max-width:600px){

    .body{
        background-color: black;
        color: white;
    }

    

    .navbar{
        justify-content: space-between;
    }


    .siteTitle{
        text-align: center;
    }


    .navlinks{
        margin-left: 30px;
    }



    
    

    .links{
        text-align: center;
        justify-content: center;
        
    }

    .anavLinks{
        font-weight: 800;
    }

    .left , .right{
    display: none;
    }

    .center{
        width: 95%;
    }

    h1{
        font-size: 10vh;
        
    }

    .h{
        display: none;
    }

    .stories{
        width: 70vw;
    }

    
}

