@import url("https://fonts.googleapis.com/css2?family=Palette+Mosaic&family=Poppins&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#page {
  display: flex;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  background-color: #ace;
  min-height: 100vh;
}

#header {
  font-family: "Palette Mosaic", sans-serif;
  background-color: #333;
  color: goldenrod;
  padding: 2%;
}

#header #domain {
  color: tomato;
}

#header a,
#header a:visited {
  color: unset;
  text-decoration: unset;
}

#content {
    font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #222;
  padding: 5%;
  flex-grow: 1;
}

#content a,
#content a:visited {
    text-align: center;
  background-color: #42424299;
  color: #def;
  text-decoration: none;
  padding: 3%;
  border-radius: 8px;
  margin-bottom: 3%;
  min-width: 65%;
}

#content a:hover {
  background-color: #424242;
  color: #fff;
}

#footer {
  font-size: 0.8rem;
  display: flex;
  justify-content: flex-end;
  background-color: black;
  padding: 2%;
}

#footer a,
#footer a:visited {
  color: #ace;
}

#footer a:hover {
  color: #def;
}
