@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:black;
    text-align: center;
    margin: 20px;
    font-size: 20px;
    width: 70vw;
    background-color: white;
    border-radius: 3px;
}

.content{
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    background-color: black;
    color: white;
}

.left , .right{
    width: 15vw;
    border: 2px solid white;
    height: 80vh;
    margin: 10px;
    border-radius: 5px;
    background-color: #5025d1;
    display: flex;
    align-items: center;
    justify-content: space-evenly;  
    flex-direction: column;
    
}

.hostingerLogo{
    height: 10vh;
}

.offer{
    text-align: center;
}

.center{
    height: auto;
    border: 2px solid white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;    
    flex-direction: column;
    width: 75vw;
    margin: 3px;
    gap: 10px;

}

.card{
    gap: 10px;
}

p{
    text-align: center;
    width: 70vw;
    font-weight: 500;
    font-size: 18px;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stories{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    border-radius: 3px;
    width: 30vw;
    height: 5vh;
    gap: 10px;
    color: black;
    
}

.storyLink{
    color:white;
    text-align: center;
    padding: 5px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    border: 2px solid white;
    border-radius: 5px;
    width:35vw;
    margin: 10px;
    
    
    
}


.offerLink{
    text-decoration: none;
    color: white;
    font-weight: 700;
}

.more{
    cursor: pointer;
    color: Yellow;
}

.continue{
    margin: 5px;
    text-align: center;
    display: none;
}


.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;
    }

    .content{
        height: auto;
        flex-direction: column;
    }



    .left , .right {
        height: 10vh;
        width: 95vw;
        flex-direction: row;
    }    
    

    .h{
        display: none;
    }

    .anavLinks{
        font-weight: 700;
    }
    

    .center{
        width: 98%;
        height: auto;
    }

    h1{
        font-size: 20px;
        width: 95%;
    }

    p{
        padding: 10px;
        width: 95%;
    }

    .stories{
        width: 80vw;
    }

    .storyLink{
        width: 85vw;
    }
    
}

