@font-face {
  font-family: 'font';
  src: url('/static/font/font.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'font';
  src: url('/static/font/font-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body {
    background: #FFE0F4;
    color: #FF00AA;
    text-shadow: 0px 0px 5px rgba(255, 0, 170, 0.8);
    padding: 5px;
    max-width: 75%;
  	margin: auto;
    font-family: font;
    font-weight: normal;
    line-height: 1.2rem;
    word-wrap: break-word;
    font-size: 22px;
}

footer {
    padding: 0 0 1.5rem 0;
    text-align: center;
    margin-top: auto;
}

main {
}

img {
	max-width: 100%;
}

strong, b {
  font-weight: bold;
}

section {
  margin-top: 32px;
  background: #fff;
  padding: 5px;
  border: medium;
  border-color: #FF00AA;
  border-radius: 5px;
  border-style: dashed;
}


h1 {
    color: #FF00AA;
    text-decoration: underline yellow;
    text-align: center;
}

h2 {
    color: #FF00AA;
}

h3 {
    color: #FF00AA;
}

a {
    color: #FF699B;
}

a:hover {
    color: #ffffff;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

th {
  background-color: #FF00AA;
  color: white;
}

tr:nth-child(even) {
  background-color: #FF00AA;
}
