@import "fonts.css";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: url('../img/background.gif');
  height: 100vh;
  display: flex;

  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

header {
  background: linear-gradient(#80AF00, #489303);
  font-size: x-large;
  width: 725px;
  height: 125px;

  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  img {
    content: url('../img/maj.png');
    height: 75%;
    opacity: 0.8;
    z-index: 0;

    position: absolute;
    top: 10px;
    left: 150px;
  }

  h1 {
    font-family: 'BN Machine', sans-serif;
    z-index: 1;
  }
}

footer {
  width: 725px;
  height: 125px;
}

.szoveg {
  background: #808080;
  height: 50px;
  padding: 5px;

  p {
    color: white;
    font-family: 'BN Machine', sans-serif;
  }
}

.whu {
  background: #000020;
  color: #ffffee;
  height: 75px;
  padding: 5px;
  text-align: right;

  display: flex;
  flex-direction: column;
  justify-content: center;

  .title {
    font-family: 'Jaapokki Enchance Regular';
    font-size: x-large;
    text-decoration: none;
    text-transform: uppercase;

    .regular {
      font-family: 'Jaapokki Regular';
    }

    &:visited,
    &:hover,
    &:active {
      color: inherit;
    }
  }
}