/* Global Styles */

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow-y: auto;
  padding-top: 20px;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  pointer-events: none;
}

#canvas-fg {
  z-index: 2;
}

/* Container Styles */

#wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#container {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  z-index: 3;
  flex: 1;
}

/* Download Container Styles */

#download-container {
  width: 30%;
  margin-top: 220px;
  margin-right: 100px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  z-index: 4;
}

#cover {
  background-color: #060719;
  border: 1px solid #fff;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
}

#download-container a {
  color: lightblue;
  font-size: 25px;
  font-family: cursive;
  text-decoration: none;
}

#download-container a:hover {
  color: #ccc;
}

/* Instruction Container Styles */

#instr-container {
  align-self: flex-end;
  width: 60%;
  flex-direction: column;
  z-index: 5;
}

#instr-container-a {
  padding: 20px;
  border-radius: 10px;
}

#instr-container-a h2 {
    text-align: center;
    font-size: 40px;
    color: #fff;
    padding: 10px;
}

#instr-container-a h3 {
  text-align: right;
  font-size: 30px;
  color: #fff;
  padding: 10px;
}

#instr-container-a p {
  text-align: center;
  font-size: 14px;
  color: #fff;
  padding: 10px;
  background-color: #060719;
}

/* Image Container Styles */

.image-container {
  text-align: center;
  margin-bottom: 20px;
}

.image-container img {
  width: 100%;
  height: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Section Divider Styles */

.section-divider {
  margin: 20px 0;
}

.section-divider hr {
  border: none;
  height: 1px;
  background-color: #fff;
  width: 50%;
}

/* Footer Styles */

#copyright {
  background-color: #333;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  clear: both;
  z-index: 6;
}

#copyright ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#copyright li {
  display: inline-block;
  margin-right: 20px;
}

#copyright img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}