
@import url('https://fonts.googleapis.com/css2?family=Oldenburg&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body{
    background-color: pink;
    font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  margin-left: 0%;
  margin-bottom: 0%;

}

header{
background-color: pink;
margin-top: 0%;
display: flex;
border-bottom: 1px solid black;
position:sticky;
top:0;
z-index: 1000 
;

}
header>.img{
    /* position:sticky; */
    display:inline-block;
    margin-left: 2%;
    /* margin-top: 0%; */
    /* margin-bottom: 0%; */
}
header>.img>img{
    width:60px;
 height:60px; 
 border-radius:50%;
 margin-bottom: 0%;
}
header>.head{
    display: inline-block;
    margin-top: 0%;
    /* margin-left: 40%; */
    position: sticky;
    
    
}
header>.head>h1{
    margin-top: 0%;
    margin-bottom: 0%;

}
header>.head>p{
    margin-top: 0%;
    font-size: small;
    text-transform: capitalize;
    margin-bottom: 0%;
}
header>nav{
    margin-top: 0%;
    /* background-color: black; */
    /* background-color: black; */
    margin-left: 40%;
    
    
}
/* @media screen and (max-width:320x) {
    header>nav>ul{
        display:inline-block ;
    }

} */
header>nav>ul{
    display: flex;
    gap: 0px;
    /* margin-left: 60%; */
     list-style-type: none;
}
header>nav>ul>li>a{
    text-decoration: none;
    color: rgb(22, 21, 21);
    text-transform: capitalize;
    /* padding: 5px; */
    margin-left: 55px;
    margin-top: 0%;
    margin-bottom: 0%;
   
}
@media screen and (max-width:320px) {
    article>p{
       display: contents;
       width: 100%;
    }
}
article{
    width: 100%;
    height:100%;
    position: relative;
}
article>img{
width: 100%;
    height:100%;
}
article>p{
    position: absolute;
    top: 30%;
    left: 45%;
    right: 5%;
    letter-spacing: 2px;
    letter-spacing: 2px;
    font-style:italic ;
    line-height: 2;
}
section{
    height:80%;
    width: 80%;
    background-color: papayawhip;
    box-sizing: border-box;
    margin-left: 10%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 50%;
}
section>h2{
    /* text-align: center; */
    text-transform: capitalize;
}
section>form{

}
section>form>label{
    text-transform: uppercase;
}
section>form>input{
    padding: 10px;
    gap: 40px;
    background-color: rgb(239, 245, 245);
}

@media screen and (max-width:320px) {
    .containter1{
        /* flex-direction: column; */
        
        width: 500px;
        height:auto ;
        
    }
    .container>.containter1>.con1{
    display: block;
    /* animation: heart 8s 0.4S infinite; */

}
    
}
.containter1{
    display:flex;
    width: 500px;
height: 500px;
align-items: center;
margin-left: 12%;
gap: 10%;

 
    
}
.container>.containter1>.con1{
    width: 300px;
    height: 350px;
     padding: 10px;
    background-color: aqua;
    /* animation: heart 8s 0.4S infinite; */

}
/* @keyframes heart{
    0%{opacity: 0;}
    50%{opacity: 5; rotate: 360deg;}
    100%{opacity: 0;}
} */
.container>.containter1>.con2{
    width: 300px;
    height: 350px;
    padding: 10px;
     background-color: rgb(255, 187, 0);
        /* animation: heart 8s 0.4S infinite; */
}
/* @keyframes heart{
    0%{opacity: 0;}
    50%{opacity: 5; rotate: 360deg;}
    100%{opacity: 0;}
} */
.container>.containter1>.con3{
    width: 300px;
    height: 350px;
     padding: 10px;
     background-color: rgb(20, 197, 197);
        /* animation: heart 12s 0.6S infinite; */
}
/* @keyframes heart{
    0%{opacity: 0;}
    50%{opacity: 5; rotate: 360deg;}
    100%{opacity: 0;}
} */
.con1:hover{
    transform: scale(1.2);
    transition:.8s;
}
.con2:hover{
    transform: scale(1.2);
    transition:.8s;
}
.con3:hover{
    transform: scale(1.2);
    transition:.8s;
}
footer{
    background-color: peru;
    margin-top: 0%;
    padding: 15px;
    margin-bottom: 0%;
    display: flex;
    flex-direction: row;
    font-weight: 500;
    justify-content: center;
    align-items: center;
}
footer>ul{

}
footer>ul>li{
    display: inline;
    row-gap: 40%;
      
}
footer>ul>li>a{
    text-decoration: none;
    padding: 15px;
    color: black;
    text-transform: capitalize;


}