/** Fonts */
@font-face {
    font-family: 'NotoSans';
    src: url(../assets/shared/fonts/notosans/NotoSans-Regular.ttf);
}

html,
body {
    padding: 0;
    margin: 0;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-align: center;
    color: white;
    background: black;
}

body {
    width: 100%;
    overflow: hidden;
}

body::before {
    background-image: url("./images/background_web.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    filter: blur(12px);
    transform: scale(1);
    inset: 0;
    z-index: 1;
    content: "";
  position: absolute;
}

#overlay {
    position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

#wrapper {
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100dvw;
    height: 100dvh;
    position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);

}

img {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 300px;
}

#game-logo {
    display: block;
    margin: auto;
    max-width: 350px;
    padding-top: 25px;
}

.header,
h1,
h2,
h3 {
    text-align: center;
    margin: 0;
    font-family: NotoSans;
}

h1,
h2 {
    color: #ffffff;
    font-size: 35pt;
    /* letter-spacing: 0.03rem; */
    text-transform: uppercase;
}

h2 {
    margin-bottom: 20px;
}

#title {
    margin-top: 20px;
    margin-bottom: 60px;
}

.information_container {
    width: 800px;
    max-width: 800px;
    margin: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 40px;
}

ul {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

ul, ul li {
    width: 100%;
}

ul li {
    font-size: 12pt;
    text-align: left;
    line-height: 130%;
    color: #ffffff;

}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    border: 2px solid #ffffff;
    font-size: 12pt;
}

th, td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
}

td {
    border-bottom: none;
    border-top: none;
}

th {
    font-weight: bold;
}

tr:last-child td {
    border-bottom: none;
}


#egg-table  {
      width: 100%;
      border-collapse: collapse;
      font-family: Arial, sans-serif;
      margin: 20px auto;
      margin-bottom: 40px;
}

#egg-table th {
    color: #ffffff;
    text-align: center;
    padding: 10px;
    width: 30%;
    border: none;
}

#egg-table td {
    padding: 10px;
    width: 70%;
}

#egg-table tr {
    border-bottom: 2px solid #ffffff;
}

#egg-table tr:last-child {
    border-bottom: none;
}

@media screen and (max-width: 800px) {
    .information_container {
        width: 95%;
        max-width: unset;
    }
}