body {
    padding: 0;
    margin: 0;
    background: #ffffff;
}

nav {
    width: 100%;
    display: flex;
    background-color: rgb(255, 202, 210);
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    padding: 0 1rem;

}

li {
    font-family: "Playfair Display";
    font-size: 22px;
    list-style-type: none;
    margin: 0rem 1rem;
    padding: 0 1rem;
    
    
}

a {
    text-decoration: none;
    color: white;
}

.logo {
    font-family: "Lilita One";
    font-size: 24px;
    display: flex;
    padding: 0 1rem;
    margin: 0rem 1rem;
    
}

.hero {
    width: 100%;
    height: 100%;
    background-image: url(../images/hero.jpg);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;

    
}
h1 {
    font-family: "Lilita One";
    color: rgb(255, 255, 255);
    font-size: 55px;
    display: Flex;

}

h1:hover {
    color: lightblue;
}

nav li:hover a {
    color: black;
}

/* About */

#parent {
    display: flex;
    position: relative;
    width: 100%;
    height: 90%;
    top: 80px;
    

}

.back {
    width: 100%;
    height: 380px;
    
    display: flex;
    position: absolute;
    top: 40px;
    left: 20px;
}

.front {
    width: 100%;
    height: 380px;
    
    display:flex;
    position: absolute;
    top: 130px;
    left: 300px;
}

.text {
    font-family: "Playfair Display";
    font-size: 22px;
    font-weight: 400;
    display: flex;
    position: absolute;
    top: 130px;
    left: 630px;
}
.box {
    width: 57.5%;
    height: 53.6%;
    background-color: rgb(255, 214, 221);
    position: absolute;
    top: 130px;
    left: 610px;
    text-align: justify;
}

.name {
    width:100%;
    font-family: "Lilita One";
    font-size: 55px;
    position: absolute;
    bottom: 500px;
    left: 400px;
}



/*portfolio*/

.container {
    display: flex;
    
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 10px;
    row-gap: 10px;
    position: relative;
    bottom: 180px;

    box-shadow: 0 0 20px 2px rgba(0, 0, 0, .1);
    transition: 5s;
    
}

hr {
    position: relative;
    bottom: 200px;
}
.container img{
    width: 350px;
    height: 450px;
    margin: 0;

    display:block;
    
}

.title {
    font-family: "Lilita One";
    color: pink;
    font-size: 90px;
    display: flex;
    justify-content: center;
    position: relative;
    bottom: 60px;
   

}

.container img:hover {
    transform:scale(1.1);
    z-index: 1;
    
}

/*footer*/

footer {
    background: lightpink;
    height: auto;
    width: 100vw;
    font-family: "playfair display";
    padding-top: 40px;
    color: white;

}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    left: 5px;


}

.footer-content h6 {
    font-size: 28px;
    font-weight: 300;
    font-family: "lilita one";
    line-height: 0;
    margin: 2rem;
    
}

.footer-content p {
    max-width: 500px;
    margin: 1px auto;
    line-height: 28px;
    font-size: 24px;
    
    
}

.socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 2rem 0;
    position: relative;
    right: 18px;

}

.socials li {
    margin: 5 12px;
}

.socials a {
    text-decoration: none;
    color: white;
}

.socials a i {
    font-size: 30px;

}

.socials a:hover i {
    color: lightskyblue;
}

.footer-bottom {
    background: pink;
    width: 100vw;
    padding: 15px 0;
    text-align: center;

}

.footer-bottom p {
    font-size: 12px;
    word-spacing: 2px;
    font-weight: 600;

}

.footer-bottom span {
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;

}



/*media query for tablet*/

@media screen and (max-width: 768px) {
   
}