@font-face {
  font-family: "vcr";
  src: url("./fonts/Janyk.ttf");
}

@font-face {
  font-family: "Yoster Island";
  src: url("./fonts/yoster.ttf");
}

:root {
  --color1: #711c91;
  --color2: #ea00d9;
  --color3: #0abdc6;
  --color4: #133e7c;
  --color5: #091833;
}

html {
  background-image: url('https://64.media.tumblr.com/494876fd73fe284ae54251e8e8e78e0c/tumblr_mxuzy5wQYE1snmc0lo3_250.jpg');
}

body {
  width: 100%;
  top: 0;
  left: 0;
  margin: 0;
}

header {
  background-color: var(--color2);
  font-family: Yoster Island;
  border: 3px solid black;
  padding-left: 10px;
  height: 72px;
  width: 100%;
  border-bottom: 0;
}

header h1 {
  margin-left: 260px;
}

footer {
  text-align: center;
  background-color: var(--color4);
  color: white;
  font-family: vcr;
  position: fixed;
  bottom: 0;
  left: 243px;
  right: 0;
  border: 3px solid black;
  border-left: 0;
}

#leftsidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 240px;
  background-color: var(--color3);
  border: 3px solid black;
  border-top: 0;
  overflow-y: auto;
}

#leftsidebar h3 {
  margin-left: 6px;
  font-family: vcr
}

#leftsidebar label {
  font-family: Yoster Island;
}

#leftsidebar input, #leftsidebar button {
  margin-left: 6px;
}

#content {
  background-color: var(--color1);
  color: white;
  border: 3px solid black;
  margin-left: 283px;
  margin-bottom: 100px;
  min-height: 700px;
  width: 1000px;
  padding: 6px;
  font-family: verdana;
}