@import url('https://fonts.googleapis.com/css2?family=Freeman&family=Koulen&display=swap');

* {
  margin: 0;
  padding: 0px;
}

body {
  background-color: #74ACCF;
  color: #FFFFFF;
}

header {
  width: 100%;
  display: flex;
  border-bottom: solid 5px #BCE0F6;
}

h1 {
  font-family: "Koulen", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding: 12px;
  user-select: none;
}

main {
  padding: 12px;
}

section {
  background-color: #BCE0F6;
  color: #000000;
  width: auto;
  height: auto;
  padding: 12px;
  margin-top: 1rem;
  border: solid 3px #FFFFFF;
  border-radius: 15px;
}

article {
  background-color: #74ACCF;
  color: #FFFFFF;
  width: auto;
  height: auto;
  padding: 12px;
  margin-top: 1rem;
  border: solid 2px #000000;
  border-radius: 7px;
}

h2 {
  font-family: "Koulen", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h3 {
  font-family: "Koulen", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
}

p {
  font-family: "Freeman", sans-serif;
  font-weight: 400;
  font-style: normal;
}

details {
  font-family: "Freeman", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000000;
  background-color: #BCE0F6;
  padding: 5px;
  margin: 5px;
  border-radius: 10px;
}

form {
  font-family: "Freeman", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.hidden { 
  display: none; 
}

legend {
  margin-left: 5px;
}

footer {
  width: 100%;
  background-color: #BCE0F6;
  color: #000000;
  text-align: center;
}

