@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@900&display=swap');
html {
  font-size: 62.5%;
} /*makes 1rem=10px*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: lightgray;
}
a{
  text-decoration: none;
  color: #0d6797;
}
.container {
  display: flex;
  flex-direction: row;
  min-width: 76.8rem;
  max-width: 84rem;
  position: relative;
  width: 50%;
  background-color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 5%);
  box-shadow: 0px 121px 80px rgba(74, 74, 74, 0.1),
    0px 63.9238px 43.8872px rgba(74, 74, 74, 0.0718854),
    0px 36.3439px 32.6085px rgba(74, 74, 74, 0.0596107),
    0px 21.0674px 25.305px rgba(74, 74, 74, 0.05),
    0px 11.5248px 18.2469px rgba(74, 74, 74, 0.0403893),
    0px 4.946px 10.0354px rgba(74, 74, 74, 0.0281146);
}
.image .mob-img {
  display: none;
}
.image .tab-img {
  display: none;
}
.image img {
  display: block;
  width: 100%;
  height: auto;
}
.text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: absolute;
  margin-left: 54%;
  margin-top: 15rem;
  text-align: left;
}
button {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1.9rem;
  letter-spacing: 2px;
  margin: 2rem 0;
  padding: 1rem 4rem;
  background-color: #0d6797;
  border: none;
  color: white;
  font-size: 1.4rem;
  height: 5rem;
  width: 30rem;
  cursor: pointer;
}
#p1 {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 4.8rem;
  color: #4a4a4a;
}
#p2, #p3 {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #4a4a4a;
}

.pce_logo img {
  position: relative;
  display: table;
  margin-right: auto;
  margin-left: auto;
  margin-top: 4rem;
  height: 3.8rem;
}
#countDown{
  display: inline;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #4a4a4a;
}
#p3 {display: inline;}

/*----------------Tablet--------------------------------------*/

@media all and (min-width: 540px) and (max-width: 805px) {
  .container {
    display: flex;
    flex-direction: row;
    min-width: 85%;
    height: auto;
    position: relative;
    width: 50%;
    background-color: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 7%);
  }

  .image .desk-img {
    display: none;
  }
  .image .tab-img {
    display: block;
    width: 100%;
    height: auto;

    /*width: 36rem;
    height: 62.2rem;*/
  }
  .text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: absolute;
    margin-left: 45%;
    margin-top: 15rem;
    text-align: left;
    
  }
  #p1 {
    font-size: 3.2rem;
    line-height: 3.6rem;
  }
  #p2, #p3 {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .pce_logo img {
    height: 3rem;
  }
  .btn_load button {
    font-size: 1.4rem;
    height: 4.8rem;
    width: 24rem;
  }
}

/*----------------Mobile--------------------------------------*/
@media all and (max-width: 539px) and (min-width: 320px) {
  body {
    background-color: white;
  }
  .container {
    display: flex;
    
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    box-shadow: none;
    background-color: gray;
    justify-content:  center;
    margin-top: 1.5rem;
  }
  .image .desk-img {
    display: none;
  }
  .image .tab-img {
    display: none;
  }
  .image .mob-img {
    display: block;
    width: 100%;
    max-height: 100%;
  }
  .text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 0%;
    margin-top: 60%;
    text-align: left;
  }
  #p1 {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  #p2, #p3 {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .btn_load button {
    height: 4.8rem;
    width: 28rem;
    font-weight: 400;
    font-size: 1.4rem;
    align-content: center;
  }
  .pce_logo img {
    height: 2.8rem;
    margin-left: 25%;
    margin-top: 8%;
  }
}

