*{
    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;
        display: none;
        width: 200px;
        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;
}


/* ----------- article page content --------  */

.blog-content{
    width: 80%;
    margin: auto;
    padding: 20px 0;
}
.blog-left{
    flex-basis: 65%;
}
.blog-left img{
    width: 50%;
    border-radius: 10px;
    
}
.blog-left h2{
    justify-content: left;
    font-weight: 600;
    margin: 20px 0;
}

.blog-left p{
    line-height: 30px;
}
.blog-left ul{
    font-size: 20px;
}

.blog-right{
    flex-basis: 32%;
}

.blog-right h3{
    background:rgb(173, 128, 128);
    color: #fff;
    padding: 7px 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding-left: 4px;
    margin-bottom: 20px;

}
.blog-text{
    word-break: normal;
    white-space: normal;
}

.btn{
    display: block;
    width: fit-content;
    border: 2px solid purple;
    padding: 14px 50px;
    border-radius: 6px;
    background-color: rgb(137, 137, 137);
    text-decoration: none;
    color: black;
    transition: all 0.5s;
}
.btn:hover{
    background-color: rgb(183, 121, 130);
    font-weight: 500;
}

.blog-right div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    box-sizing: border-box;
}

.btn{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 2px solid purple;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: black;
    transition: all 0.5s;
}
.btn:hover{
    background: lightpink;
    font-weight: 500;
}
/* -------Contact------ */
.contact-left{
    flex-basis: 35%;
}
.contact-right{
    flex-basis: 50%;
}
.contact-left p{
    margin-top: 30px;
}
.contact-left p i{
    color: purple;
    margin-right: 15px;
    font-size: 25px;
}
.social-icons{
    margin-top: 30px;
}
.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: rgb(184, 141, 148);
    display: inline-block;
    transition: all 0.5s;
}
.social-icons a:hover{
    color: red;
    transform: translateY(-5px)
}
.btn.btn2{
    display: inline-block;
    background: rgb(157, 33, 157);
}
.contact-right form{
    width: 100%;

}
form input, form textarea{
    width: 100%;
    border: 0;
    outline: none;
    background:rgb(242, 232, 242);
    padding: 15px;
    margin: 15px 0;
    color: black;
    font-size: 15px ;
    border-radius: 6px;
}
form btn2:hover{
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}
#resumebtn{
    cursor: pointer;
}
#msg{
    color:#03bb37;
    margin-top: -40px;
    display: none;
    font-size: 20px;
    transition: all .5s;
}
.drink{
    cursor: pointer;
    text-decoration-line: none;
    text-decoration: none;
}
span a:link{
    text-decoration: none;
    color: black;
}
