@import url('https://fonts.googleapis.com/css2?family=Jaini+Purva&display=swap');
/* resets */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: rgb(141 96 57);
}

:root{
    --primary-color: rgb(255, 109, 5);
    --secondary-color: rgb(255, 106, 0);
    --padding-inline-section: 20px;
    --quote-size: 30px;
}


/* utility */
.contaier{
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: var(--padding-inline-section);
    /* background-color: red; */
}

.flex{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

/* main title quote  */
.contaier h1{
    font-family: "Jaini Purva", system-ui;
    padding: 3px 223px;
    font-size: 60px; 
    color: var(--primary-color);
    margin-top: 30px;
}

p{
    font-size: var(--quote-size);
    font-style: italic;
}

/* img-with-quote */

.img-with-quote{
    height: 400px;
    border: 1px solid rgb(55, 54, 54);
    border-radius: 5px;
}

.text p{
    font-style: normal;
    font-size: 1em ;
    color: red;
    background: black;
    transition: 0.3s ease-out;
}

.text p:hover{
    /* background: black; */
    font-size: 2em;
}

/* Biography-section */
.short-biography h2{
    font-size: 30px; 
    font-weight: 100;
}

ul{
    margin-top: 8px;
    margin-left: 60px;
}

li{
    margin-bottom: 5px;
}

footer{
    text-align: center; 
    font-size: 18px; 
    margin-top: 24px;
    font-weight:lighter;
    display: flex;
    flex-direction: column;
    gap: 10px;
}