*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.navbar{
    height:80px;
    width:1540px;
    background-color:#03045e;
    display: flex;
    align-items:center;
    justify-content:center;
}
.home{
    height:80px;
    width:100px;
    color:white;
    margin-left:10px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.home i{
    font-size:30px;
}
.menu{
    height:80px;
    width:80%;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
}
.search{
    height:80px;
    width:100px;
    font-size:30px;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
}
.hero{
    width: 1530px;
    height: 650px;
    background-color: #CAF0F8;
    display: flex;
}
.bars{
    width: 15%;
    height: 650px;
    border-top-right-radius:0%;
    border-bottom-right-radius:0%;
    background-color: #0077b6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.bars-in-in{
    font-size: larger;
    color: #fff;
    width: 154px;
    height: 72px;
    cursor: pointer;
}
.contents{
    width: 80%;
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.content{
    font-size: 2rem;
    font-weight: bolder;
    width: 1000px;
    height: 110px;
    border-radius: 200px;
    background-color: #00b4d8;
    display: flex;
    justify-content: center;
    align-items: center; 
}
.content a{
    text-decoration: none;
    color: #03045e;
}
@media screen and (max-width:600px){
    .navbar{
        height:80px;
        width:600px;
    }
    .hero{
        height:1000px;
        width:600px;
    }
    .bars{
        width: 150px;
        height:1000px;
    }
    .bars-in-in{
        margin-left:20px;
    }
    .contents{
        width:450px;
        height:1000px;
    }
    .content{
        width: 400px;
        height: 90px;
    }
}