*{
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(183, 183, 183);
}

body p{
    font-size: 26px;
}

.header{
    width: 100%;

}
.container{
    padding: 40px 10%;

}
.container h1{
    font-size: 60px;
}
nav{
    display: flex;
    padding: .1% 6%;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(173, 128, 128);
}

nav img{
    width: 150px;
    margin: 0;
    padding: 0;
}

.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style:none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.nav-links ul li::after{
    content:'';
    width: 0%;
    height: 2px;
    background: linear-gradient(rgba(96, 58, 96, .1),rgba(143, 63, 63,1));
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%
}

nav .fa {
    display: none;
}
.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.text-box h1{
    font-size: 62px;
}

.text-box p{
    margin: 10px 0 4px;
    font-size: 14px;
    color: white;
}


.about-btn:hover{
    border: 1px solid purple;
    border-radius: 4px;
    color: black;
    font-weight: 700;
    background: rgb(82, 57, 82);
    
}

nav .fa{
    display: none;
}


@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block; 
    }
    .nav-links{
        position: absolute;
        background: linear-gradient(rgba(96, 58, 96, .7),rgba(143, 63, 63,.9));
        height: 100vh;
        width: 200px;
        display: none;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 4000;
        transition: 1s;
    }

    nav .fa{
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul{
        padding: 30px;
    }
}

h1{
    font-size: 36px;
    font-weight: 600;
}

p{

    font-size: 14px;

    line-height: 22px;
    padding: 10px;
}

.row{
    margin-top: 5%;
    display: flex;
    text-align: left;
    justify-content: space-between;
    flex-wrap: wrap;
}

.img-title{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 3rem;
    margin-bottom: 0;
}
.img-subtitle{
    display: flex;
    align-items: center;
    margin: 0px 3rem;
    justify-content: center;
    border-bottom: 2px solid rgb(82, 57, 82);
}

.img-gallery{
    width: 80%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap:30px;
}
.img-gallery img{
    width: 100%;
    border: 1px solid white;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all .2s;
}

.img-gallery img:hover{
    transform: scale(.8) rotate(-10deg);
    border-radius: 20px;
    box-shadow: 0 32px 75px rgba(68,66,136,.2)
}

.full-img{
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.9);
    position: fixed;
    top: 0;
    left: 0;  
    display: none;
    align-items: center;
    justify-content: center; 
    z-index: 100;
}

.full-img img{
    width: 90%;
    max-width: 500px;
}

.full-img span{
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: white;
    cursor: pointer;
    
}