@import url("/assets/shared/definitions-172cb38a.css");

html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  color: var(--color-text);
  background: url("https://files.z0ny.net/img/bg/img06-2476619.jpg") fixed left bottom;
  background-size: cover;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: Courier New, Courier, monotype, serif;
}

#main {
  flex: 1 1 auto;
  position: relative; /* need this to position inner content */
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;

  #content {
    margin: 10px 0 10px 0;
    flex: auto;
    width: var(--content-size);
    align-self: center;
    background-color: var(--content-background-color);
    padding: 10px;
    line-height: 1.4;
    border: var(--border-color) 1px dotted;

    @media only screen and (max-width: var(--content-size)) {
      width: 95%;
    }
  }

  #bottom {
    align-self: center;
    background-color: var(--content-background-color);
    width: var(--content-size);
    padding: 0 10px 0 10px;
    text-align: center;
    color: var(--color-text-dark);

    @media only screen and (max-width: var(--content-size)) {
      width: 95%;
    }
  }
}

#header {
  flex: 0 0 auto;
  width: 100%;
  padding: 0;
  text-align: right;
  left: 0;
  top: 0;
  z-index: 10;
  line-height: 1.4;
  background-color: var(--header-background-color);

  .login {
    margin: 0 5px 0 5px;
  }
}

#footer {
  flex: 0 0 auto;
  line-height: 60px;
  text-align: center;
  background-color: var(--header-background-color);
}

a {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a:link, a:visited {
  color: var(--color-link);
}

a:hover {
  color: var(--color-link-hover);
}