* {
  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%;
}

#header {
  display: flex;
  height: 13%;
  width: 100%;
  justify-content: space-around;
  position: fixed;
  align-items: center;
  background-color: white;
}

#logo {
  /* background-color: bisque; */
  height: 70%;
}

#logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.texts {
  color: rgb(0, 0, 90);
  display: flex;
}

.texts:hover {
  color: rgb(6, 159, 229);
}

.icon {
  padding: 10px;
  border-radius: 50%;
}

.icon:hover {
  background-color: lightblue;
}

#login {
  padding: 10px;
  border-radius: 50px;
  display: flex;
}

#login:hover {
  background-color: lightblue;
}

#try {
  background-color: green;
  padding: 10px 20px;
  color: white;
}

#try:hover {
  background-color: rgb(0, 50, 0);
  padding: 10px 20px;
  color: white;
}

#contactDetails {
  margin-left: 40px;
  font-weight: lighter;
}

#fakeheader {
  height: 13%;
  width: 100%;
}

#page1 {
  height: 87%;
  width: 100%;
}

#strip {
  text-align: center;
  color: white;
  width: 100%;
  height: 8%;
  background-color: darkblue;
  align-items: center;
  display: flex;
  justify-content: center;
}

#strip u {
  margin-left: 20px;
  font-weight: lighter;
}

#content {
  width: 100%;
  height: 76%;
  /* background-color: wheat; */
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#box1 {
  height: 90%;
  width: 47%;
  background-color: white;
  /* margin: 10px; */
}

#box2 {
  height: 90%;
  width: 47%;
  background-color: grey;
  /* margin: 10px; */
}

#heading {
  width: 100%;
  height: 16%;

  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(0, 0, 130);
}

#heading h1 {
  font-weight: 600;
}

#box1 h1 {
  font-weight: 600;
  color: rgb(0, 0, 80);
  font-size: 50px;
  margin: 30px 30px;
}

#box1 p {
  font-size: x-large;
  margin: 30px 30px;
  font-weight: lighter;
}

#btns {
  display: flex;
}

#btn1 {
  text-align: center;
  margin: 10px;
  width: 23%;
  padding: 10px 20px;
  color: white;
  background-color: rgb(0, 125, 167);
  border-radius: 5px;
}

#btn1:hover {
  background-color: rgb(0, 66, 88);
}

#btn2 {
  text-align: center;
  margin: 10px;
  width: 23%;
  padding: 10px 20px;
  color: rgb(0, 125, 167);
  border: 1px solid rgb(0, 125, 167);
  border-radius: 5px;
}

#btn2:hover {
  background-color: lightblue;
  color: rgb(2, 55, 72);
  border-color: rgb(0, 125, 167);
}

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