html,
body {
  height: 100%;
}

body {
  display: grid;
  place-items: center;
  background: #dbd0bc;
}

.app {
  width: 100%;
  height: 100%;
  background: #dbd0bc;
  overflow-y: hidden;
}

.submitbtn {
  -webkit-appearance: none;
  height: 55px;
  background-color: #36bf61;
  color: white;
  font-weight: bold;
  border: none;
  font-size: 25px;
  width: 300px;
  border-radius: 10px;
  margin-top: 12px;
}

.submitbtn:disabled {
  background-color: gray;
}

#top-menu {
  text-align: center;
  position: fixed;
  top: 45px;
  width: 100%;
  height: 85px;
  background-color: #dbd0bc;
  z-index: 1000;
}

#prompt-button {
  margin-top: 30px;
  height: 70px;
  border: none;
  background-color: black;
  color: white;
  font-size: 18px;
  border-radius: 10px;
  width: 150px;
}

#views-div {
  width: 35%;
  margin-left: 10px;
  margin-top: 10px;
  text-align: center;
  display: inline-block;
}

#prompt-view {
  width: 30%;
  display: inline-block;
}

.view-button {
  width: 60px;
  height: 60px;
  padding: 5px;
  margin-left: 2px;
  margin-right: 2px;
  background-repeat: no-repeat;
  background-size: 45px 45px;
  background-position: center;
  background-color: #5c5c5c;
  border-radius: 10px;
  border: none;
  opacity: 0.6;
}

.grid-button {
  background-image: url("../icons/grid-white-nb.png");
}

.gallery-button {
  background-image: url("../icons/gallery-white-nb.png");
}

.selected-button {
  opacity: 1 !important;
}

#galleryview {
  /* If this is too small then you'll get annoying y scrolling*/
  height: 100%;
}

.font-size-button {
  height: 35px;
  width: 35px;
  border: none;
  border-radius: 5px;
  margin-left: 1px;
  margin-right: 1px;
  background-color: #5c5c5c;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../icons/A.png");
  opacity: 0.6;
}

.small-font {
  background-size: 15px 15px;
}

.medium-font {
  background-size: 20px 20px;
}

.large-font {
  background-size: 27px 27px;
}

.selected-font-button {
  opacity: 1 !important;
}
