
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');
*{
    margin: auto;
}
body{
    display: flex;
    flex-direction: column;
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 1.2vw;
    letter-spacing: 2px;
}
header{
    position: fixed;
    display: flex;
    flex-direction: row;
    background: #030f12;
    color: whitesmoke;
    width: 100%;
    max-height: max-content;
    min-height: 1.5em;
    text-transform: uppercase;
    z-index: 1;
}
.logo-section{
    width: 10%;
    margin-left: initial;
}
.logo-sec{
    margin-left: 0.8em;
    max-width: 35%;
    max-height: 100%;
    cursor: pointer;
}
.navigation-bar{
    width: 70%;
    flex-grow: 2%;
    margin-inline-end: initial;
}
a{
    color: gray;
    text-decoration: none;
}
header a,
footer a{
    color: whitesmoke;
    text-decoration: none;
}
ul{
    display: flex;
    flex-direction: row;
}
.nav-link:hover{
    color: crimson;
    font-size: 20px;
}
.container{
    display: grid;
    grid-template-columns: 100%;
    padding: 0px;
    padding-top: 1em;
    width: 100%;
}
section{
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 5% 0;
}
section div{
    width: 50%;
    margin: 0 auto;
}
section h1{
    text-align: center;
}
.cover-section{
    margin-top: 0px;
    padding: 0% 0% 0% 0%;
}
h1{
    padding-bottom: 30px;
    padding-left: 0.5em;
    text-align: center;
    font-size: 5vw;
    letter-spacing: 0.5em;
}
.title-text{
    width: 40%;
    text-align: center;
    color: black;
    margin: auto;
    padding: 0 20px;
    animation: fade-in 6s;
}
@keyframes fade-in{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.box-feature{
    width: 60%;
    max-height: auto;
}
.box-feature img{
    width: 100%;
}
.box-feature .cover-image{
    animation: fade-in 5s;
}
#story-section{
    display: flex;
    flex-direction: row-reverse;
    background-color: black;
    color: whitesmoke;
}
.section-text h2{
    text-align: center;
}
.section-text p{
    text-align: justify;
    margin: auto 2.5em;
    line-height: 1.9em;
}
.samples{
    flex-direction: column;
    text-align: center;
    background-color: #e4dcdc;
}
.featured{
    width: 90%;
    display: grid;
    grid-template-columns: 2fr 2fr 2fr ;
    grid-gap: 4%;
    margin: 20px auto 5px auto;
}
.work{
    width: 100%;
    color: black;
}
.work img{
    display: flex;
    justify-content: center;
    width: 350px;
    height: 400px;
    cursor: pointer;
    max-height: auto;
    border-radius: 25px;
    opacity: 0.2;
    object-fit: cover;
    transition: .2s linear;
}
.work img:hover{
    transform: scale(1.2);
}
.work img:hover{
    cursor: pointer;
    transform: translateY(-15px);
    transition: all ease 0.5s;
    opacity: 1;

}
.popup-image{
    position: fixed;
    top: 0; left: 0;
    background: rgba(0, 0, 0, .9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}
.popup-image span{
    position: absolute;
    top: 0; right: 10px;
    font-size: 60px;
    font-weight: bolder;
    color: #fff;
    cursor: pointer;
    z-index: 100;
    
}
.popup-image img{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #fff;
    border-radius: 5px;
    width: 750px;
    object-fit: cover;
}
@media (max-widht:768px){
    .popup-image img{
        width: 95%;
    }
}
h2{
    font-size: 3.0vw;
    padding-bottom: 15px;
    text-transform: uppercase;
}
.contact-section{
    background: #222222;
    color: ghostwhite;
}
.form-box{
    padding-top: 1em;
}
form .form-entry{
    display: block;
    padding: 0.8em 0;
}
.section-text h2{
    letter-spacing: 5px;
    padding-left: 40px;
}
form .txt-box{
    margin-top: 0.3em;
    width: 100%;
    padding: 0.7em 0;
    border-radius: 2px;
    border: 2px transparent;
}
form .btn{
    text-align: center;
    background-color: #e6e8e8;
    color: black;
    font-weight: 700;
    letter-spacing: inherit;
    border: 2px solid #eaeaea;
    box-shadow: 0px 0px 10px 1px #29393e;
    border-radius: 5px;
    padding: 0.5em 2em;
    font-size: 14px;
}
.btn:hover{
    cursor: pointer;
    background: rgb(32, 32, 32);
    color: aliceblue;
}