*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color:white;
}
.hr1{
    position: relative;
    bottom:4rem;
    left:3.5rem;
    width: 80%;
}
.hr2{
    position: relative;
    width: 30%;
    top:1rem;
    left:7rem;
    height:0rem;
    border-style:dotted;
    border-radius: 30%;
    
    
}
a{
    text-decoration: none;
}

/* navbar started */
.navbar{
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}
.navbar-left{
   display: flex;
margin-top: 0.5rem;
margin-left:1rem;
}
.navbar-left .logo{
    height:2.5rem;
    position: relative;
}
.navbar-left p{
    position: absolute;
    left:9.3rem;
    top:1.4rem;
    font-size: 1.5rem;
    color: #5f6368;
}
.navbar-right{
    display: flex;
    justify-content:space-around;
    
}
.navbar-right .time p{
    margin-top: 0.9rem;
    font-size: 1.2rem;
    color: #5f6368;
    
}
.navbar-right .side-icons{
    padding: 0.8rem;
}
.navbar-right .side-icons .icons{
    padding:0 0.9rem;
}
/* Navbar completed */

/* Main section started */
.main{
    width:100%;
    display: flex;
    /* width:100vh; */
}
.aside{
    width:50rem;
    background-color: white;
    height:35rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-top: 2rem;
}
.aside h4{
    padding:0rem 3rem;
    position: relative;
    bottom:6rem;
    
}

.aside .texts{
    padding:3.5rem;
}
.texts p{
    width:30rem;
    color: #5f6368;
    padding:1rem 0.3rem;
    margin-top:2rem;
    font-size: 1.2rem;
}
.texts h1{
    width:28rem;
    font-weight: 400;
    font-size:2.5rem;
    padding:0rem 0.3rem;
}
.buttons{
    padding: 1rem 3.5rem;
    position: relative;
    bottom: 4rem;
    display: flex;
    

}
.blue-btn{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width:9rem;
    height:3rem;
    border-radius: 5%;
    background-color: #1a73e8;
    border: none;
}
.blue-btn .icons, p{
color: white;
}
.buttons .search{
    margin-left: 1rem;
    width:17rem;
    text-align: center;
    font-size:1rem;
}
.bside{
    width:50rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.final-tex{
    width:15rem;
    margin-top: -5rem;
}
.final-tex h3{
    font-weight: 520;
    font-size: 1.5rem;
}
.find{
    margin-top: -5rem;
    font-weight: 300;
    font-size: 1.5rem;
    color:#5f6368 ;
    width:20rem;
}
/* .big-img{
    position: relative;
    top:5rem;
    left:10rem;
} */

/* main section completed */
/* meadia query */
@media only screen and (max-width:800px){
    html{
        font-size: 12px;
    }
    .navbar-right{
        display: none;
    }
    .main{
        display: flex;
        flex-direction: column;
    }
    .bside{
        align-items: center;
    }
    .aside{
        align-items: center;
    }
    .final-tex{
        position: relative;
        top:5rem;
    }
    .final-text{
        position: relative;
        top:11rem;
    }
    .link{
        margin:3rem 1rem;
        padding:1rem;
    }
    

}