
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {

    font-size: 62.5%;
    overflow-x: hidden;
}
body{
    width: 100%;
      font-family: "Montserrat", sans-serif;
      color: #333;
      font-size: 1.6rem;
      line-height: 2.4rem;
position: relative;
}
header{
    height: 7rem;
    width: 100%;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav, .hero-box, .video-box, .footer-box{
    padding: 1rem;
width: 80%;
margin: auto;
}
.logo{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 3.6rem;
    color: #fff;
}
/* HERO SECTION */
.hero-box{
    padding: 5rem 1rem;
}
 .main-heading{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 4.2rem;
    line-height: 4.4rem;
    text-align: center;
    margin-bottom: 1.6rem;
}
.hero-content-box, .about-author{
    display: flex;
    flex-direction: row;
}
.hero-content-box{
    gap: 3rem;
}
.img-box{
    width: 100%;
}
.img-box img{
    width: 100%;
}
.img-box h4{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #666;
    padding-top: 3.6rem;
    padding-bottom: 1.2rem;
}
.main-author-box{
    position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.about-author{
    align-items: center;
    gap: 1.8rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #111;
}
.author-content h2{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 2.4rem;
}
.author-content p{
    font-size: 1.5rem;
}
.author-img-box img{
    height: 15rem;
    width: 15rem;
    border-radius: 100%;
}

.ad-img img{
    padding-top: 2rem;
    width: 100%;
}
/* VIdeo AD SECTION */
.video-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}
.video-box img{
width: 100%;
}
.video-box h3{
    text-align: center;
}
.video-box .cart-btn{
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    padding: 8px 16px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: 1px;
    color: #fff;
    background-color: #111;
    border-radius: 8px;
    transition: all .8s ease;
}
.video-box .cart-btn:hover{
    background-color: #333;
    letter-spacing: 0.7px;
}
/* FOOTER SECTION */
footer{
    background-color: #111;
padding: 1.6rem 1rem;
}
.footer-box h2, .footer-box p{
    text-align: center;
    color: #999;
}
.footer-box h2{
    font-size: 1.6rem;
    margin-bottom:0.6rem;
    }
.footer-box p{
font-size: 1.6rem
}
.anchor-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.anchor-box a{
    padding: 1rem;
    color: #999;
    text-decoration: none;
    font-size: 1.5rem;
   display: inline-block;

}