* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
}

#main {
    height: 100%;
    width: 100%;
    background-color: rgb(21, 198, 210);
}

/*Also we have to fix header at top even while scrolling
so we use position fixed but doing so the page 1 will start 
from header starting and seem to be shorter i.e,page1 is overridden by header
to avoid this we make a useless header(fake header)*/
#header {
    position: fixed;
    background-color: white;
    height: 13%;
    width: 100%;
    display: flex;
    align-items: center;
    /*we romved margin instead we used justify content:space aroung*/
    justify-content: space-around;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
 }
 #fakeheader {/*this header will be under the real header and will not be 
    shown as this will solve above problem*/
     height: 13%;
    width: 100%;
 }

#logo{
    height: 70%;
    /* margin: 25px; */
    display: flex;
    align-items: center;
    justify-content: center;
}/*Now we  have to select the img inside logo so we have to do like this*/
#logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text{
    background-color: white;
    color: navy;
    /* margin: 10px; */
    display: flex;
}
.text:hover{
    color: blueviolet;
}
#contactdetails{
    /* margin-left: 40px; */
    font-weight: light;
}
.icon{
        padding:10px ;
        border-radius: 50%;
}
.icon:hover{
    /* margin-left: 20px; */
    background-color: lightblue;
}
#login{
    /* margin-left: 20px; */
    display: flex;
    padding: 10px;
    border-radius: 50px;
}
#login:hover{
    background-color: lightblue;
}
#try{
    /* margin-left: 30px; */
    background-color: rgb(5, 152, 5);
    padding: 10px 20px;/*this means padding for 
    to and bottom  is 10px and for left and right is 20 px*/
    color: white;
}
#try:hover{
    background-color: rgb(1, 47, 1);
}


#page1 {
    /* height: 90vh;
      vh means height is not dependent on parent instead it
       10 percent of  whole screen instead of 10 percent of parent*/
    height: 87%;
    width: 100%;
    background-color: wheat;
}
#strip{
    height: 8%;
    width: 100%;
    background-color: rgb(2, 2, 82);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
#strip u{margin: 20px;
    font-weight: lighter;
}
#content{width: 100%;
    height: 76%;
    background-color: pink;
    display: flex;
    align-items: center;
    justify-content: space-around;

}
#box1{
    height: 90%;
    width: 47%;
    background-color: white;
}
#box2{
    height: 90%;
    width: 47%;
    background-color: gold;
}
#heading{
    width: 100%;
    height: 16%;
    background-color: white;
text-align: center;
color: blue;
}
#heading h1{
    font-weight: 600px;
}
#box1 h1{
    /* margin: ; */
    font-weight: 800;
    padding: 40px;
    color: navy;
}
#btns{
    display: flex;
}
#btn1{text-align: center;
    border-radius:5px ;
    width: 23%;
    padding: 10px 20px;
    margin: 10px;
    color: white;
    background-color:  rgb(93, 120, 230);
}
#btn1:hover{
    background-color: navy;
}
#btn2{text-align: center;
        border-radius:5px ;
        width: 23%;
    padding: 10px 20px;
        margin: 10px;

        color: rgb(9, 34, 133);
    border: 1px solid  rgb(9, 34, 133);
}
#btn2:hover{
    background-color: lightblue;}

#page2 {
    height: 87%;
    width: 100%;
    background-color: pink;
}