:root {
  --background-color: #FDF4DC;
  --container-color: #E4DDCA;
  --item-color: #CBC6B7;
}

@font-face {
  font-family: 'title';
  src: url('fonts/babes-toyland.ttf') format('truetype');
}

body {
  display: flex;
  background-color: var(--background-color);
  flex-direction: column;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

h1 {
  font-family: 'title';
  text-align: center;
}

h3 {
  font-family: 'title';
}

img.cover {
  width: 240px;
}

p {
  text-align: justify;
}

table {
  width: 100%;
}

td {
  padding: 5px;
  text-align: center;
  background-color: var(--item-color);
}
tr :first-child {
  text-align: left;
}

.center {
  text-align: center;
}

.shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.container {
  margin-top: 20px;
  padding: 20px;
  width: 100%;
  max-width: 1100px;
  background-color: var(--container-color);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content {
  width: 100%;
}
.content :first-child {
  margin-top: 0;
}
.content :last-child {
  margin-bottom: 0;
}

.links-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.link {
  cursor: pointer;
  user-select: none;
  width: fit-content;
  background-color: #ddd;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: black;
}

.link:hover {
  background-color: #ccc;
}

.website-version {
  text-align: center;
  font-size: 0.6em;
  margin-top: 40px;
}
