/* CSS HEX
--prussian-blue: #1A2A3Bff;
--moonstone: #2D9DAAff;
--mint-green: #C0E9E8ff;
--coral: #EA8556ff;
--apricot: #FABEA2ff; */

body {
  margin: 0;
  background-image: url(vibrant-colors-wool-thread-abstract-pattern-generated-by-ai.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; /*Ceasiumtea*/
  color: white;
  font-family: Tahoma;
  font-size: 16px;
}

h1,
p {
  text-align: center;
  background-color: #FABEA2ff;
  color: white; /*not accessible*/
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
}

h1 {
  margin-top: 3rem;
}

form {
  width: 60vw;
  max-width: 700px;
  min-width: 500px;
  margin: 0 auto;
  padding: 5px;
  border-radius: 20px;
  background-color: #1A2A3Bff;
}

fieldset {
  background-color: #69A6A9ff;
  border: 2px solid #C0E9E8ff;
  border-radius: 10px;
  margin: 1em;
}

select {
  margin-left: 15px;
  margin-top: 5px;
}

input[type="submit"] {
  display: block;
  width: 60%;
  margin: 1em auto;
  height: 2em;
  font-size: 1.1rem;
  background-color: #69A6A9ff;
  border-color: #C0E9E8ff;
  border-radius: 10px;
  min-width: 300px;
  color: white;
}

input, select,
textarea {
  background-color: #FABEA2ff;
  border: 1px solid #1A2A3Bff;
  border-radius: 5px;
  color: #1A2A3Bff;
}

legend {
  float: left;
  margin-top: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
}


ul {
  list-style-type: none;
  margin-top: 4em;
  padding: 0;
  display: grid; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr 1fr 1fr 1fr; 
  gap: 0px 0px; 
  grid-template-areas: 
    "col1-item1 col2-item1 col3-item1"
    "col1-item2 col2-item2 col3-item2"
    "col1-item3 col2-item3 col3-item3"
    "col1-item4 col2-item3 col3-item4"
    "col1-item5 col2-item5 col3-item5";
}

/*Better than before - still needs a fer tweaks*/
input[type="checkbox"],
input[type="radio"],
label {
  float: left;
  line-height: 1.5em;
  height: 2em;
  margin: 0px 3px;
  padding: 0px;
}











