* {
  padding: 0;
  margin: 0;
}
body {
  background-color: #fff7ef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 100vh;
  font-family: Hack, monospace;
}
div {
  color: #727272;
  text-align: center;
}
p {
  margin: 16px;
  font-size: 96px;
  color: #ccc;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 1s ease-in-out;
  position: relative;
}
p::before {
  content: attr(data-item);
  transition: all 1s ease-in-out;
  color: #8254ff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  overflow: hidden;
}
p:hover::before {
  width: 100%;
}
nav {
  margin: 25px;
  background: #fff8e4;
  padding: 16px;
}
nav .menuItems {
  list-style: none;
  display: flex;
}
nav .menuItems li {
  margin: 25px;
}
nav .menuItems li a {
  text-decoration: none;
  color: #8f8f8f;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.5s ease-in-out;
  position: relative;
  text-transform: uppercase;
}
nav .menuItems li a::before {
  content: attr(data-item);
  transition: 0.5s;
  color: #8254ff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  overflow: hidden;
}
nav .menuItems li a:hover::before {
  width: 100%;
  transition: all 0.5s ease-in-out;
}

/***********************************************Botões************************************************/
.box-total {
  height: 50px;
  margin-top: 180px;
}

.box-button1 {
  margin-left: 25px;
  width: 25%;
  height: 43vh;
}

.bteesquerdo {
  margin-left: -300px;
  height: 30%;
  display: flex;
}

.bte {
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  border-radius: 500px;
  transition-property: background-color, border-color, color, box-shadow, filter;
  transition-duration: 0.3s;
  border: 1px solid transparent;
  letter-spacing: 2px;
  min-width: 160px;
  text-transform: uppercase;
  white-space: normal;
  font-weight: 700;
  text-align: center;
  padding: 16px 14px 18px;
  color: #616467;
  box-shadow: inset 0 0 0 2px #616467;
  background-color: transparent;
  height: 48px;
}

.bte:hover {
  color: #fff;
  background-color: #f56653;
}

.box-button2 {
  margin-top: -368px;
  width: 25%;
  height: 43vh;
  margin-left: 335px;
}
.btdireito {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btd {
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  border-radius: 500px;
  transition-property: background-color, border-color, color, box-shadow, filter;
  transition-duration: 0.3s;
  border: 1px solid transparent;
  letter-spacing: 2px;
  min-width: 160px;
  text-transform: uppercase;
  white-space: normal;
  font-weight: 700;
  text-align: center;
  padding: 16px 14px 18px;
  color: #616467;
  box-shadow: inset 0 0 0 2px #616467;
  background-color: transparent;
  height: 48px;
}

.btd:hover {
  color: #fff;
  background-color: #d1e706;
}

/********************************************Media Query Tablet**************************************************************/

@media screen and (min-width: 600px) {
  nav .menuItems li {
    margin: 25px;
  }

  nav .menuItems li a {
    text-decoration: none;
    color: #8f8f8f;
    font-size: 30px;
    font-weight: 400;
    transition: all 0.5s ease-in-out;
    position: relative;
    text-transform: uppercase;
  }

  /***********************************************Botões************************************************/
  /*caixa dos botões*/
  .box-total {
    width: 100%;
    height: 50px;
    margin-top: 170px;
  }

  /*caixa botão esquerdo*/
  .box-button1 {
    margin-top: -1%;
    margin-left: 15px;
    width: 15%;
    height: 25%;
  }

  /*caixa botão direito*/
  .box-button2 {
    margin-top: 7px;
    margin-left: 82%;
    width: 15%;
    height: 25%;
  }
}

/******************************************Media Query PC*********************************************************************/

@media screen and (min-width: 998px) {
  nav .menuItems li {
    margin: 50px;
  }

  nav .menuItems li a {
    text-decoration: none;
    color: #8f8f8f;
    font-size: 24px;
    font-weight: 400;
    transition: all 0.5s ease-in-out;
    position: relative;
    text-transform: uppercase;
  }

  /***********************************************Botões************************************************/

  .box-total {
    width: 100%;
    height: 20%;
    margin-top: 15px;
  }

  .box-button1 {
    margin-left: 20px;
    width: 15%;
    height: 25%;
  }

  .box-button2 {
    margin-top: -45px;
    margin-left: 83%;
    width: 15%;
    height: 25%;
  }
}
