@charset "UTF-8";

/* @import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap') screen; */

html {
    font-size: 20px;
}

body {
    /* font-family: Merriweather, serif; */
    font-family: serif;
    background-color: black;
    color: white;
    max-width: 850px;
    margin: auto;
}

p a, p a:visited {
    text-decoration: none;
    color: #8989ff;
    font-weight: bold;
}

img.logo-big {
    width: 522px;
    height: 270px;
}

img.logo-small {
    width: 298px;
    height: 154px;
}

.header {
    text-align: center;
}

.footer {
    border-top: 1px solid white;
    padding: 20px 0px;
    font-size: 80%;
    text-align: center;
}

.wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}

#content {
    margin-left: 39px;
}

.home-content {
    font-size: 200%;
}

span#enter-button {
	background: radial-gradient(#856d9f 0, #856d9f 30%, transparent 70%);
	padding: 20px 40px;
	font-weight: bold;
	font-size: 120%;
	margin-left: 160px;
}

span#enter-button a {
    color: inherit;
    text-decoration: none;
}

#navbar {
    color: #d4d2d2;
    background-color: #696767;
    padding: 22px;
    border-radius: 4px;
    margin-top: 1.8em;
}

#navbar a, #navbar a:visited {
    color: inherit;
    text-decoration: none;
}

#navbar a.current {
    color: white;
    font-weight: bold;
}

#navbar > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 800px),
       screen and (orientation: portrait)
{
  html {
    font-size: 15px;
  }

  .wrapper {
    flex-direction: column;
    align-items: center;
  }

  #content {
    margin: 8px;
  }

  #navbar {
    margin: 1em 0 0 0;
    padding: 3px;
  }

  #navbar > ul > li {
    display: inline;
    padding: 0;
    margin: 0;
  }

  #navbar > ul > li::after {
    content: " |";
  }

  #navbar > ul > li:last-child::after {
    content: normal;
  }

  .home-content {
    text-align: center;
  }

  span#enter-button {
    margin: unset;
  }

  img.logo-big {
    width: 223.5px;
    height: 115.5px;
  }

  img.logo-small {
    width: 178.8px;
    height: 92.4px
  }
}
