main {
  display: flex;
  background-color: #bc54f5;
  justify-content: space-evenly;
  min-height: 80vh;
  max-height: -moz-fit-content;
  max-height: fit-content;
  align-items: center;
}

body {
  margin: 0px;
}

.center-div {
  display: flex;
  justify-content: space-evenly;
}
.center-div #sidebuttons {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.content {
  background-color: #b59dc3;
  width: 55vw;
  height: 70vh;
}

.photo {
  height: 40vh;
  display: inline;
  margin: 10px;
  border-radius: 50px;
}

.break {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  display: flex;
}

p {
  font-size: larger;
  margin: 10px;
}

.large-text {
  font-size: x-large;
}

.content {
  background-color: #b59dc3;
  padding: 10px;
  border-radius: 40px;
  box-shadow: 12px 12px 12px black;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.carousel {
  width: 50vw;
  padding: 10px;
}

.project-content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 20vw;
}
.project-content .project-redirect {
  background-color: #d7c3e3;
  color: black;
  width: 80%;
  display: block;
  padding: 20px;
  border-radius: 250px;
  text-align: center;
  font-size: xx-large;
}

.limit-size {
  width: 30vw;
}

form {
  display: flex;
  padding: 10px;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
}

input, textarea {
  border-radius: 10px;
  padding: 5px;
  margin: 5px;
  font-size: large;
  border: black 3px solid;
  width: 100%;
  background-color: #d7c3e3;
}

.submit {
  background-color: #d7c3e3;
  color: black;
  width: 80%;
  display: block;
  padding: 20px;
  border-radius: 250px;
  text-align: center;
  font-size: xx-large;
  border: black 5px solid;
}

footer, header {
  background-color: #8537a0;
  padding: 10px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.buttons {
  margin-top: 15px;
  width: 80%;
  display: flex;
  justify-content: space-evenly;
}

header {
  justify-content: space-between;
  align-items: center;
  padding-left: 5vw;
  padding-right: 5vw;
}
header h1 {
  color: white;
  font-size: 350%;
}
header nav {
  width: 45%;
  display: flex;
  justify-content: space-evenly;
}
header nav a {
  padding: 10px;
}

a {
  background-color: #622c80;
  padding: 5px;
  border: solid black 3px;
  color: white;
  text-decoration: none;
  border-radius: 15px;
  box-shadow: 6px 6px 12px black;
}

#game {
  background-color: #b59dc3;
  width: 20vw;
  padding-top: 15px;
  margin-bottom: 15px;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
#game #buttons {
  margin: 10px;
}

li {
  font-size: x-large;
}

#buttons {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: solid black 4px;
  padding: 10px;
  background-color: #8537a0;
  border-radius: 100vw;
}
#buttons #sidebuttons {
  padding: 0px;
  width: 100%;
}
#buttons .arrow-left {
  margin-right: 20px;
}
#buttons .arrow-right {
  margin-left: 20px;
}

#screen {
  border: 2px black solid;
  background-color: #8537a0;
}

.pixel {
  padding: 0px;
  gap: 0px;
  width: 30px;
  height: 30px;
}

.floor {
  background-color: #8537a0;
}

.wall {
  background-color: #b59dc3;
}

.goal {
  background-color: yellow;
}

.player {
  background-color: green;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.inconspicious {
  background-color: #722c80;
}

.specific-carousel {
  width: 40vw;
}

@media screen and (max-width: 640px) {
  .photo {
    height: auto;
    display: inline;
    margin: 5px;
  }
  .content {
    background-color: #b59dc3;
    height: -moz-fit-content;
    height: fit-content;
    width: 80vw;
    margin: 15px;
  }
  .main-content {
    margin-bottom: 25px;
  }
  .break {
    flex-direction: column;
  }
  header, footer {
    flex-direction: column;
  }
  header nav, footer nav {
    margin-bottom: 15px;
    width: 90vw;
    justify-content: space-between;
  }
  main {
    display: flex;
    height: -moz-fit-content;
    height: fit-content;
    flex-direction: column;
    align-items: center;
  }
  #game {
    width: 75vw;
  }
  .pixel {
    height: 25px;
    width: 25px;
  }
  .responsive-buttons {
    flex-direction: column;
    align-items: center;
  }
  button {
    width: -moz-fit-content;
    width: fit-content;
    margin: 5px;
  }
  .carousel {
    height: auto;
    width: 75vw;
  }
  .project-content {
    width: 80vw;
  }
  .project-redirect {
    margin: 10px;
  }
}
#move_right, #move_left, #move_up, #move_down {
  background-color: rgba(0, 0, 0, 0);
  border: none;
}/*# sourceMappingURL=style.css.map */