html, body {
  overflow-x: hidden; /* Prevents horizontal scrolling */
  width: 100%; /* Ensures the body takes up full width */
  touch-action: pan-y; /* prevents from letting user slide the page left and right */
  margin:0;
  padding:0;
}

html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20%);
    opacity: 0;
  }

  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.fadeInUp-animation {
  animation: 1.5s fadeInUp;
}

h1 {
  font-size: 3.25em;
  font-weight: lighter;
  color: #aaaaaa;
  margin: 0;
}

#header {
  margin: 50px 0 50px 15px;
}

#header p {
  margin: 10px 0 0 0;
  color: #777777;
}

/* 005462 */
body {
  background-color: #ffffff;
  color: rgb(96, 96, 96);
}

* {
  font-family: helvetica;
}

.controls {
  padding: 10px 5px;
  background-color: #ffffff77;
  position: sticky;
  top: 0;
  border-radius: 0 0 5px 5px;
  margin: 0 0 25px 0;
}

/* 334455, #bbac9b; cae9ec, 307d95, 76d7e477 */
.snaps-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
  color: #777777;
  background-color: #deeef0;
  border-radius: 12px;
}

.snaps-list li {
  display: inline-block;
  width:120px;
  margin: 15px 5px;
  padding: 0;
  background-color: #ffffff;
}

.snaps-list li img:hover {
  border-color: #777777;
  cursor: pointer;
}

.snaps-list li img {
  width: 100%;
}

#snaps-modal {
  display: none;
  text-align: center;
  margin: 0;
  padding: 20px;
  border: 1px solid #334455;
  background-color: #112233CC;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.snaps-full {
  display: inline-block;
  background-color: #ffffff;
  padding: 10px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  background-image: linear-gradient(0deg, rgb(255, 255, 255) 75%, rgb(221, 221, 221) 100%);
}
.snaps-full img {
  width: 100%;
}

button {
  background-color: #cce9f3;
  font-size: large;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
}

button {
  background-color: #ffffff;
  color: #777777;
  border: 1px solid #cccccc;
  border-radius: 5px;
}

.red-button {
  background-color: #c35040;
  color: #ffffff;
  border: 1px solid #990000;
}

button:hover {
  text-decoration: underline;
}

/* c35040 */
.tab-navigation {
  border-bottom: 2px solid #eeeeee;
  margin: 25px 0 0 0;
  padding: 0 0 10px 0;

}

.tab-navigation>* {
  border: 1px solid transparent;
  padding: 5px 15px;
  cursor: pointer;
  border-bottom: 0px !important;
  border-radius: 15px;
  background-color: transparent;
  color: #777777;
}

.tab-navigation>.tab-selected {
  position: relative;
  top: 1px;
  background-color: #ffcc22;
  color: #000000;
}

.tab-contents>* {
  display: none;
}

.tab-contents>.tab-selected {
  display: block;
}



#main {
  display: block;
  margin: 0 10px 0 10px;
}

#footer {
  border-top: 2px solid #eeeeee;
  text-align: center;
  padding:10px 0 0 0;
}

#canvas-motion-detector {
  image-rendering: crisp-edges; /* For older browsers */
  image-rendering: pixelated; /* Modern browsers */
}