:root{
  --gray: rgb(245, 245, 245);
  --blue: rgb(80, 80, 255);
  --red: rgb(244, 89, 89);     
  --green: rgb(58, 167, 58);
  --purple: rgb(102,51,102);
}

:root{
  --paragraph-weight: 400;
  --heading-weight: 700;

  --paragraph-size: 18px;
  --header-size: 32px;
  --subheader-size: 26px;

  --purple: #663366;
  --pink: #E5007D;
  --white:#FFFF;
}

/* font setup */
@font-face {
  font-family: "roboto condensed";
  src: url(../Fonts/RobotoCondensed-Light.ttf);
  font-weight: 200;
}
@font-face {
  font-family: "roboto condensed";
  src: url(../Fonts/RobotoCondensed-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "roboto condensed";
  src: url(../Fonts/RobotoCondensed-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "roboto condensed";
  src: url(../Fonts/RobotoCondensed-SemiBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "roboto condensed";
  src: url(../Fonts/RobotoCondensed-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "roboto condensed";
  src: url(../Fonts/RobotoCondensed-Black.ttf);
  font-weight: 500;
}

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

html, body{
  height: 100%;
  font-family:  "roboto condensed";
  background-color: var(--purple);
}

header {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100vw;
  padding: 8px 0;
  height: -moz-fit-content;
  height: fit-content;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: var(--subheader-size);
  background-color: var(--white);
  font-weight: var(--heading-weight);
  align-items: center;
  list-style-type: none;
  z-index: 100;
  font-family: "roboto condensed" ;
}
header #menu {
  display: flex;
}
header #logo {
  left: 0;
  width: 4em;
  -o-object-fit: cover;
  object-fit: cover;
  height: 3em;
  position: relative;
  padding-top: 12px;
  margin: 0 50px;
}
header #dutch-flag {
  right: 0;
  position: relative;
  width: 3em;
  margin-right: 50px;
}
header #dutch-flag:hover {
  cursor: pointer;
}
header #main-menu {
  display: flex;
  align-items: center;
}
header #main-menu a {
  color: var(--purple);
  text-decoration: none;
}
header #main-menu :hover {
  color: var(--pink);
}
header #dropdown-menu {
  display: none;
  position: absolute;
  width: 243px;
  left: 22vw;
}
header #dropdown-menu ul:first-child {
  background-color: transparent;
  color: transparent;
  font-size: 2px;
  font-size: 0px;
  padding: 6px 0;
}
header #dropdown-menu ul a:last-child {
  padding-bottom: 9px;
}
header #dropdown-menu ul {
  padding: 0;
  background-color: var(--pink);
  color: var(--white);
  cursor: pointer;
}
header #dropdown-menu a {
  background-color: var(--pink);
  color: var(--white);
  text-decoration: none;
  display: flex;
  width: 100%;
  margin: 0 !important;
  gap: 0 !important;
  justify-content: center;
  padding: 7px 0 !important;
}
ul:hover header #dropdown-menu a:hover {
  color: var(--pink) !important;
  background-color: var(--white) !important;
}
header #dropdown-menu ul a:hover {
  background-color: white;
  width: 100%;
}
header #dropdown-menu ul:first-child:hover {
  color: transparent;
  background-color: transparent;
}
header #dropdown-button:hover #dropdown-menu {
  display: flex;
  text-align: center;
  flex-direction: column;
}

header a{
  margin: 0 1rem;
}

main{
  margin: 50px;
}

figure {
  min-width: 50px;
  min-height: 70px;
  display: inline-block;
  border: solid 1px;
}
aside{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--gray);
  padding: 1rem 0.5rem 0;
  border: 1px black solid;
  border-radius: 8px;
  max-width: 500px;
}
.picked-clr{
  margin: auto 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  margin: 0 4px;
  align-items: center;
  gap: 0.5rem;
}
#current-clr{
  max-height: 50px;
  width: 80%;
  margin: 8px auto;
  border-radius: 8px
}
#btn-reset{
  font-size: 1.5rem;
  padding: 8px 0;
  margin: 2rem 4px;
  border: 1px black solid;
  border-radius: 8px;
  background-color: #222;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}
#btn-reset:hover{
  background-color: #333;
}
.pick-color {
  min-width: 100px;
  min-height: 50px;
  border-radius: 8px;
  color: white;
  display: flex;
  margin: 4px;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-color: black;
  transition: background-color 0.3s;
  cursor: pointer;
}
main{
  display: grid;
  grid-template-columns: 0.2fr 0.8fr;
  grid-gap: 1rem;
  padding: 1rem;
  height: 80%;
  max-width: 930px;
  margin: 1rem auto;
  min-width: 600px;
  width: 800px;
}
.page {
  border: solid 1px;
  width: 100%;
  padding: 1rem 2rem;
  margin: 0 auto;
  border-radius: 8px;
  background-color: rgb(245, 245, 245);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.canva {
  display: grid;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr) 2fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}
.fig1 {
  grid-area: 1 / 1 / 4 / 3;
}
.fig2 {
  grid-area: 4 / 1 / 5 / 3;
}
.fig3 {
  grid-area: 1 / 3 / 3 / 4;
}
.fig4 {
  grid-area: 5 / 1 / 6 / 3;
}
.fig5 {
  grid-area: 3 / 3 / 6 / 4;
}
#blue {
  background-color:blue ;
}
#blue:hover{
  background-color:var(--blue) ;
}
#red {
  background-color:red ;
}
#red:hover {
  background-color:var(--red) ;
}
#green {
  background-color: green ;
}
#green:hover {
  background-color: var(--green) ;
}
.painted{
  cursor: pointer;
  transition: background-color 0.3s;
}
.painted:hover{
  background-color: lightgray;
}

.Tasks {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 1em 0;
}

.Tasks ul {
  list-style-type: numbers;
  max-width: 300px;
  margin: 0 0 0 20px;
}

.Tasks ul li {
  text-align: start;
  line-height: 30px;
}



