* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
}

body {
  background-color: #F79F49;
}

.wrapper {
  width: 90vmin;
  padding: 120px 40px;
  background-color: #15161a;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 5px;
  box-shadow: 20px 20px 40px rgba(97, 63, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 100px;
}

#broga {
  width: 250px;
  height: 250px;
  background-image: url("../img/Broga.webp");
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}

p {
  font-size: 26px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  word-break: break-word;
  line-height: 35px;
  margin: 30px 0;
  opacity: 0;
}

.fade {
  opacity: 1;
  transition: opacity 1.5s;
}

button {
  display: block;
  background-color: #F79F49;
  border: none;
  font-size: 18px;
  color: #171721;
  font-weight: 600;
  padding: 12px 25px;
  margin: 0 auto;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #d89a26;
}

button:active {
  background-color: #b38023;
}/*# sourceMappingURL=style.css.map */