*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
html,body{
    height: 100%;
    width: 100%;
}
#main{
    height: 100%;
    width: 100%;
}
.texts{
   color: rgb(6, 6, 114);
    margin: 20px;
    display: flex;
}
.texts:hover{
    color: rgba(13, 238, 193, 0.86);
}
#header{
     height: 13%;
     width: 100%;
     position: fixed;
     display: flex;
     align-items: center;
     justify-content: space-around;
     background-color: white;
}
#contactDetails{ 
    font-weight: lighter;
}
.icon{
  padding: 10px;
  border-radius: 50%;
}
.icon:hover{
    background-color: lightblue;
}
#login{
    padding: 10px;
    border-radius: 50px;
    display: flex;
}
#login:hover{
    background-color: lightblue;
}
#logo{
    height: 70%;
    margin: 10px;
}
#try{
   background-color: green;
   padding: 10px 20px;
   color: white;
}
#try:hover{
    background-color: rgba(7, 73, 7, 0.811);
}
#logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#fakeHeader{
    height: 13%;
    width: 100%;
  
}
#page1{
    height: 87%;
     width: 100%;
     background-color:white ;   
}

#strip{
    width: 100%;
    height: 8%;
    background-color: darkblue;
    color: white;
    align-items: center;
    display: flex;
    justify-content: center;
}

#strip u{
    margin-left: 20px;
    font-size: smaller;
}

#content{
    width: 100%;
    height: 76%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#box1{
    height: 90%;
    width: 47%;
    background-color: white;
}

#box2{
    height: 90%;
    width: 47%;
    background-color: blue;
}

#box2 img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#heading{
    width: 100%;
    height: 16%;
    align-items: center;
    display: flex;
    justify-content: center;
}

#heading h1{
    font-weight: 600;
}

#box1 h1{
    font-weight: 600;
    color: rgba(6, 6, 88, 0.786);
    font-size: 50px;
    margin: 30px 10px;
   
}

#box1 p{
    margin: 10px;
    font-size: x-large;
    font-weight: lighter;
}

#btns{
    display: flex;
}

#btn1:hover{
    background-color: rgb(4, 103, 130);
}

#btn2:hover{
    background-color: lightblue;
    color: rgba(10, 88, 110, 0.808);
    border-color: rgba(10, 88, 110, 0.808);
}

#btn1{
    text-align: center;
    margin: 10px;
    width: 23%;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    background-color:rgb(0, 200, 255);
}

#btn2{
    text-align: center;
    margin: 10px;
    width: 23%;
    padding: 10px 20px;
    border-radius: 5px;
    color: rgb(0, 200, 255);
    border: 1px solid rgb(0, 200, 255);
}

#page2{
    height: 87%;
     width: 100%;
     background-color: darkgrey; 
}