
* {
      margin: 0px;
      padding: 0px;
      font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

html, body {
      background-color: rgb(33, 37, 41);
      height: 100%;
      width: 100%;
}

header {
      display: flex;
      float: left;
      position: relative;
      width: 100%;
      height: 8%;
      background-color: rgb(19, 20, 20);
      color: white;
      align-items: center;
      box-shadow: black 0px 2px 10px;
      z-index: auto;
}

nav {
      display: flex;
      width: 100%;
      height: 50%;
      margin-left: 20%;
      margin-right: 20%;
      justify-content: center;
      text-align: center;
}

a:visited, a:link {
      color: white;
      text-decoration: none;
}

nav a::after {
      content: "";
      width: 100%;
      position: absolute;
      transform: scaleX(0);
      height: 2px;
      bottom: 0px;
      left: 0px;
      background-color: rgb(202, 61, 0);
      transform-origin: right bottom;
      transition: transform 0.25s ease-out;
}

nav a:hover::after {
      transform: scaleX(1);
      transform-origin: left bottom;
}

main {
      width: 100%;
      float: left;
      min-height: 88%;
      background-color: rgb(32, 34, 34);
      color: white;
      justify-content: center;
      align-items: center;
      position: relative;
      display: flex;
}

p strong {
      color: rgb(150, 0, 0);
}

@media screen and (orientation: landscape) {
      #πerdolenie {
            text-align: center;
            font-size: 3vh;
            max-width: 55vw;
      }

      nav a {
            display: flex;
            position: relative;
            margin-left: auto;
            margin-right: auto;
            justify-content: center;
            align-items: center;
            height: 100%;
            font-weight: 900;
            font-size: 2.5vh;
            text-shadow: black 0px 5px 5px;
      }

      footer {
            height: 4%;
            width: 100%;
            font-size: 1.75vh;
            display: flex;
            float: left;
            box-shadow: black 0px 2px 10px;
            background-color: rgb(19, 20, 20); color: white;
            justify-content: center;
            align-items: center;
      }
}

@media screen and (orientation: portrait) {
      #πerdolenie {
            text-align: center;
            font-size: 3vw;
            max-width: 55vh;
      }

      nav a {
            display: flex;
            position: relative;
            margin-left: auto;
            margin-right: auto;
            justify-content: center;
            align-items: center;
            height: 100%;
            font-weight: 900;
            font-size: 3vw;
            text-shadow: black 0px 5px 5px;
      }

      footer {
            height: 4%;
            width: 100%;
            font-size: 2.5vw;
            display: flex;
            float: left;
            box-shadow: black 0px 2px 10px;
            background-color: rgb(19, 20, 20); color: white;
            justify-content: center;
            align-items: center;
      }
}

