* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
  }
  
  body {
    background: url(images/pro-upgrade-bg.svg);
    background-size: cover;

  }
  
  .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);
    transition: 0.2s;
  }
  
  .main > nav > .logo {
    font-size: 25px;
    color: #8d8d8d;
    margin-right: 55px;
    cursor: pointer;
  }
  
  .main > nav > .logo > i: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-crown {
    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: Arial, Helvetica, 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: Arial, Arial, Helvetica, sans-serif 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;
  }

@media (max-width: 450px){
  .main > nav > ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-left: -60px;
  }

  .main nav ul > .display-mobile{
    display: none;
  }

  .main > nav > ul > li{
    font-size: 30px;
  }
  .box{
    padding: 10px;
  }

  .box > .ord-btn{
    width: 200px;
    padding: 5px;
    height: 30px;
  }

  .box > .king-crown{
    font-size: 28px;
  }

  .content > .both {
    display: flex;
    width: 100%;
    height: 70px;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 7px;
  }
  


}
  