/* ===== JANELA DO NAVEGADOR ===== */
body {
  margin: 0;
  padding: 40px 0;

  background-image: url("wii-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  font-family:
    Bai Jamjuree,
    sans-serif;
}

/* ===== HEADER ===== */
.header-wrapper {
  display: flex;
  justify-content: center;

  position: sticky;
  top: 0;

  z-index: 10;
}

.header {
  width: 1089px;
  height: 70px;
  gap: 30px;

  background: #3aadff;
  background: linear-gradient(
    100deg,
    rgba(58, 173, 255, 1) 0%,
    rgba(88, 191, 162, 1) 96%
  );

  border-width: 2px;
  border-style: solid;
  border-bottom: none;

  display: flex;
  align-items: center;
  padding-left: 12px;

  font-size: 14px;
}

.menu-button,
.blog-button,
.gallery-button,
.about-button {
  box-shadow: 3px 4px 0px 0px #899599;
  background: linear-gradient(to bottom, #ededed 5%, #bab1ba 100%);
  background-color: #ededed;
  border-radius: 15px;
  border: 1px solid #d6bcd6;
  display: inline-block;
  cursor: pointer;
  color: #29a9b3;
  font-family: Arial;
  font-size: 17px;
  padding: 7px 25px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #e1e2ed;
}
.home-button:hover {
  background: linear-gradient(to bottom, #bab1ba 5%, #ededed 100%);
  background-color: #bab1ba;
}
.home-button:active {
  position: relative;
  top: 1px;
}

/* ===== PÁGINA ===== */
.page-wrapper {
  display: flex;
  justify-content: center;
}

.page {
  width: 1100px;
  min-height: 850px;
  background-color: #fff;

  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;

  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.05) 0px,
      rgba(0, 0, 0, 0.05) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.05) 0px,
      rgba(0, 0, 0, 0.05) 1px,
      transparent 1px,
      transparent 3px
    );

  background-size: 4px 4px;

  border-width: 2px;
  border-style: solid;
  border-top: none;
}

/*===PAGE FOOTER===*/
.page-footer {
  display: flex;
  align-self: flex-end;
  justify-content: space-between;

  width: 1100px;

  font-size: 18px;
  color: #606060;

  margin-bottom: 10px;
  margin-left: 30px;
  margin-right: 30px;
}
