/* general */
*{
    outline: 0;
    margin: 0;
    border: 0;
    padding: 0;
    color: var(--text-primary);
    text-decoration: none;
}
body{
    height: 100%;
    width: 100%;
    background-color: black ;
}
.container{
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    width: 100%;
    height: 100%;
    
}
.left{
    width: auto;
    height: 50%;  
   
}
.left img{
    width: 300px;
    height: 300px;
    
}
.right{
    width: 100%;
    height: 100%;
    color: aliceblue;


}
.right h1{
    margin: 6% 0% 6%;
    text-align: center;
    font: bold;
    font-size: 28px;
    
    
}
.right p{
    text-align: center;
    line-height: 60px;
    font-family: cursive;
    font-size: 22px;
}
.navs{
    display: flex;
    width: 100%;
    margin: 10% 0% 10%;
    justify-content: space-evenly;
}
.navs a{
    text-decoration: none;
    color: aliceblue;
    font-size: 25px;
}
.navs a:hover{
    opacity: 0.70;
}



/* for mobile phones */
@media (max-width: 800px){
    .container{
        display: flex;
        flex-direction: column;
        align-items: center;
       
    }
}

/* for bigger screens */
@media (min-width: 1300px){
    .left img{
        width: 500px;
        height: 500px;
    }  
    .right h1{
        font-size: 40px;
    
    }  
    .right p{
        font-size: 35px;
        line-height: 120px;
    }
    .navs a{
        font-size: 30px;
    }
    

}