* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
    text-decoration: none;
    outline: none;
    border: none;
    transition: 0.2s linear;

}

.html {
    font-size: 66.2%;
    scroll-behavior: smooth;
}

section{
    padding: 2rem 9%;
}

header {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 0.5rem 7%;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 0.2rem rgba(187, 184, 184, 0.5);
}

.logo {
    font-size: 3rem;
    color: #333;
    font-weight: bolder;
}

.logo span {
    color: darksalmon;
}

.logo a {
    font-size: 1.8rem;
    padding: 0 0.5rem;
    color: #666;
}

.navbar a {
    font-size: 1.2rem;
    padding: 0 1.5rem;
    color: black;
}

.navbar a:hover {
    color: darksalmon;
}

.icons a {
    font-size: 3rem;
    color: #333;
    padding: 0 0.4rem;
}

header #toggler {
    display: none;
}

header .fa-bars {
    font-size: 3rem;
    color: #333;
    border-radius: 0.2rem;
    padding: 0.5rem 0.5rem;
    cursor: pointer;
    border: 0.5rem solid rgba(0, 0, 0, 0.1);
    display: none;
}

.Home {
    display: flex;
    align-items: center;
    height: 100vh;
    background: url(https://w0.peakpx.com/wallpaper/480/442/HD-wallpaper-pink-tulips-spring-flowers-spring-orange-background-tulips.jpg) no-repeat;
    background-size: cover;

}

.home-content {
    max-width: 50rem;
}

.home-content h3 {
    font-size: 5rem;
    color: #333;
}

.home-content span {
    font-size: 1.5rem;
    color: #333;
    padding: 1rem 0;
    line-height: 1.5;
}

.home-content p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    padding: 1rem 0;
}

.about-heading {
    text-align: center;
    font-size: 4rem;
    color: #333;
    padding: 1rem 0;
    margin: 2rem 0;
}

.about-heading span {
    color: pink;
}

.row{
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    padding-bottom: 3rem;
}

.video-container {
    flex:1 1 40rem;
    position: relative;
}

.video-container video{
    width: 100%;
    border-radius: .5rem;
    object-fit: cover;
    height: 100%;

}
.video-container h3{
    position: absolute;
    top: 50%; transform: translateY(-50%);
    font-size: 3rem;
    background: #fff;
    padding: 0.5rem 0.5rem;
    text-align: center;
    mix-blend-mode: screen;
    width: 100%;
    padding: 1rem 2rem;
}
.content{
    flex:1 1 40rem;
}

.row .content h3{
    font-size: 2rem ;
    color: #333;

}
.row .content p{
    font-size: 1.5rem ;
    color: #999;
    padding: 5rem 0;
    padding-top: 1rem;
    line-height: 1.5;

}
.icons-container{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.icons-container img{
    height: 200px;
    width: 200px;
    gap: 5rem;

}

.btn {
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: #333;
    color: #fff;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: darksalmon;
}

@media(max-width:991px) {
    html {
        font-size: 55%;
    }

    header {
        padding: 2rem;
    }
}

@media(max-width:768px) {
    header .fa-bars {
        display: block;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #eee;
        border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    header #toggler:checked~.navbar {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    header .navbar a {
        margin: 1rem;
        padding: 1rem;
        background: #fff;
        border: 0.1rem solid rgba(0, 0, 0, 0.1);
        display: block;
    }

    .home-content h3 {
        font-size: 5rem;
    }

    .home-content span {
        font-size: 2.5rem;
    }
}

@media(max-width:450px) {
    html {
        font-size: 50%;
    }

    .about-heading {
        font-size: 3rem;
    }
    .about-heading{
        font-size: 3rem;

    }
}