* {
  font-family: 'Poppins', sans-serif;
}

html,
body {
  height: 100%;
  margin: 0;
}

.home-body {
  display: flex;
  justify-content: center;
  align-items: center;

  background-image: linear-gradient(#dfdede, #9e9e9e, rgb(56, 56, 56));
}

.home-main {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
}

.home-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;

  border-radius: 8px;
  width: 660px;
  height: 50vh;
  padding: 20px;

  background-color: #ffffff;

  box-shadow:
    1px 1px 7px rgba(95, 95, 95, 0.1),
    -1px -1px 7px rgba(95, 95, 95, 0.1),
    1px -1px 7px rgba(95, 95, 95, 0.1),
    -1px 1px 7px rgba(95, 95, 95, 0.1);
}

.home-logo {
  display: flex;
  justify-content: center;

  margin-bottom: 10px;
  margin-top: 20px;
}

.logo {
  width: 200px;
}

.home-box-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;
  height: 70%;
}

.home-buttons {
  position: relative;
  display: inline-block;

  width: 90%;
  height: 25%;
  padding: 10px;
  margin-top: 20px;

  background-color: #e0e3e6;

  border: none;
  border-radius: 8px;

  font-size: 18px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;

  cursor: pointer;
  transition: background-color 0.3s ease;
}

.home-buttons:hover {
  background-color: rgb(177, 177, 177);
  color: #ffffff;
}

.home-buttons:before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;
  width: 100%;
  height: 0;

  background-color: rgba(34, 34, 34, 0.2);
  transition: height 0.3s ease;

  border-radius: 8px;
}

.home-buttons:hover:before {
  height: 100%;

  border-radius: 8px;
}

.home-button-text {
  text-transform: uppercase;
}

/* Responsividade da página */
@media only screen and (max-width: 760px) {
  .home-box {
    width: 500px;
  }
}

@media only screen and (max-width: 560px) {
  .home-box {
    width: 400px;
  }
}

@media only screen and (max-width: 460px) {
  .home-box {
    width: 300px;
  }
}