* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  display: flex;
}

.main {
  height: 100vh;
  width: 100%;
}

.main > nav {
  display: flex;
  width: 85%;
  height: 15vh;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.main > nav > ul {
  display: flex;
}

.main > nav > ul > li {
  list-style: none;
  font-size: 17px;
  cursor: pointer;
  margin-left: 55px;
  color: #8d8d8d;
}

.main > nav > ul > li:hover {
  color: rgb(0, 119, 255);
}

.main > nav > .logo {
  font-size: 25px;
  color: #8d8d8d;
  margin-right: 55px;
  cursor: pointer;
}

.main > nav > .logo:hover {
  color: rgb(0, 119, 255);
}

.flag {
  color: rgb(0, 119, 255);
  font-size: 22px;
}

.flag:hover {
  color: rgb(255, 179, 16);
}

.box {
  width: calc(85% - 80px);
  height: 16vh;
  background-color: #f36944;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #fff;
  border-radius: 15px;
  flex-wrap: wrap;
}

.box > .ord-btn {
  width: 18%;
  height: 50px;
  background-color: #fff;
  color: rgb(10, 10, 83);
  display: flex;
  font-size: 15px;
  border-radius: 6px;
  align-items: center;
  justify-content: space-evenly;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0px 6px 0px rgb(10, 10, 83);
  border: 1px solid rgb(10, 10, 83);
}

.box > .ord-btn:hover {
  background-color: #b8b8b8;
}

.box > .ord-btn > .fa-clock {
  font-size: 20px;
}

.box > .king-logo {
  font-size: 35px;
  color: rgb(10, 10, 83);
}

.box > p {
  font-size: 17px;
  letter-spacing: 0.7px;
}

.content {
  width: 60%;
  min-height: 60vh;
  margin: 20px auto;
  text-align: center;
}

.content > h1 {
  font-size: 48px;
  font-family: cursive, Verdana, Geneva, Tahoma, sans-serif;
  color: rgb(10, 10, 83);
  line-height: 54px;
  padding-top: 28px;
}

.content > h1 > .yello {
  color: rgb(255, 174, 0);
}

.content > p {
  font-size: 18px;
  font-family: "Trebuchet MS", sans-serif;
  color: rgb(10, 10, 83);
  margin: 42px 0;
}

.content > .both {
  display: flex;
  width: 55%;
  height: 70px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  font-size: 16px;
  font-weight: bold;
}

.content > .both > .left {
  width: 44%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 10px;
  border: 2px solid rgb(10, 10, 83);
  box-shadow: 0px 7px 0px rgb(10, 10, 83);
  cursor: pointer;
}

.content > .both > .right {
  width: 47%;
  height: 55px;
  background-color: rgb(255, 219, 56);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 10px;
  border: 2px solid rgb(10, 10, 83);
  box-shadow: 0px 7px 0px rgb(10, 10, 83);
  cursor: pointer;
}

.content > .both > .right:hover {
  background-color: rgb(255, 179, 16);
}

.content > .both > .left:hover {
  background-color: #b8b8b8;
}

.fa-earth-americas,
.fa-rocket {
  font-size: 18px;
}
