/*CSS Reset*/
*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
/*CSS variables*/
:root{
    --navbar-height: 59px;
}
/*Navigation Bar*/
#navbar{
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;
}  
/*Logo and image*/
#logo{
    margin: 10px 14px;
}
#logo img{
    height: 60px;
    margin: 3px 6px;
    border-radius: 15px;
}

#navbar ul{
    display: flex;
}
#navbar::before{
   content: "";
   background-color: black;
   position: absolute;
   height: 100%;
   width: 100%;
   z-index: -1;
   opacity: 0.4;
}
#navbar ul li{
    color: white;
    list-style: none;
    font-size: 1.3rem;
}
#navbar ul li a{
    padding: 5px 20px;
    display: block;
    color: white;
    border-radius: 20px;
    text-decoration: none;
}
#navbar ul li a:hover{
    color: black;
    background-color: white;
}
/*Home Section*/
#home{
    display: flex;
    height: 700px;
    flex-direction: column;
    padding: 3px 200px;
    justify-content: center;
    align-items: center;
}
#home::before{
   content: "";
   position: absolute;
   background: url('../tshirt7.jpg') no-repeat center center/cover;
   height: 100%;
   width: 100%;
   z-index: -1;
   opacity: 0.89;
}
#home h1{
    color: white;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
}
#home p{
    color: white;
    text-align: center;
    font-size: 1.5rem;
    font-family: cursive;
}
/*Utility classes*/
.h-primary{
    font-size: 3.8rem;
    font-family: cursive;
    padding: 42px;
}
.h-secondary{
    font-size: 2.3rem;
    font-family: 'Courier New', Courier, monospace;
    padding: 12px;
}
.btn{
    padding: 6px 20px;
    border: 2px solid white;
    background-color: hotpink;
    color: white;
    margin: 17px;
    font-size: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
}
.center{
    text-align: center;
}
/*services Section*/
#services{
    margin: 12px;
    display: flex;
}
#services .box{
    margin: 3px 25px;
    padding: 24px;
    border-radius: 28px;
    border: 2px solid red;
}
#services .box img{
    height: 150px;
    margin: auto;
    display: block;
}
#services .box p{
    font-family: cursive;
}
/*Client Section*/
#clients{
    display: flex;
    justify-content: center;
    align-items: center;
}
#clients-section{
    height: 344px;
}
#client-section::before{
    content: "";
    position: absolute;
    background: url('../tshirt6.jpg');
    width: 100%;
    height: 86%;
    z-index: -1;
    opacity: 0.3;
}
#clients img{
    height: 124px;
}
.client-item{
    padding: 34px;
}
/*Contact Section*/
#contact{
    position: relative;
}
#contact::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background: url('../tshirt3.jpg') no-repeat center center/cover;
}
footer{
    background: black;
    color: white;
    padding: 9px 20px;
}
#contact-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 34px;
}
#contact-box input,
#contact-box textarea{
    width: 100%;
    padding: 0.5rem;
    border-radius: 9px;
    font-size: 1.1rem;
}
#contact-box form{
    width: 40%;
}
#contact-box label{
    font-size: 1.3rem;
    font-family: cursive;
}