@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500&display=swap');

html {
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  max-width: 100%;
  height: 100%;
}


::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #501267;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #7b2e83;
}

* {
  font-family: 'Roboto Mono', monospace;
}

body {
  margin: auto;
  overflow: overlay;
  background-color: #C0B1E0;
  max-width: 800px;
}

#information-page {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h1 {

  padding: 30px;
  font-size: 4em;
  font-weight: 500;
  letter-spacing: 0.165em;
  color: #06430F;
}

p {
  padding: 20px;
  text-align: left;
  font-size: 1.25em;
  line-height: 1.7em;
  font-weight: 400;
  color: #06430F;
}

button {
  all: unset;
  margin: 30px;
  text-align: center;
}

a {
  all: unset;
  color: #06430F;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.gradient-btn {
  width: 200px;
  height: 50px;
  background: linear-gradient(250.34deg, rgba(227, 166, 229, 0.584) -50.55%, rgba(166, 229, 183, 0.8) 106.82%);
  box-shadow: 0px 4px 15px rgba(6, 67, 15, 0.28);
  border-radius: 30px;
}

canvas {
  visibility: hidden;
  position: absolute;
}

.gradient-blob {
  position: absolute;
  filter: blur(150px);
  width: 60%;
  height: 60%;
  border-radius: 50%;
  border: solid 2px;
}

.pink {
  background: #FDB0FF;
}

.gradient-blob:nth-child(1) {
  top: -200px;
  left: -150px;
}

.gradient-blob:nth-child(2) {
  top: 400px;
  right: -150px;
  background: rgb(161, 240, 182);
}

.gradient-blob:nth-child(3) {
  bottom: -600px;
  right: -10px;
}

.box {
  position: relative;
  padding: 30px;
}

#camera-application {
  position: relative;
  overflow: hidden;
  text-align: center;
}

#camera-application .big {
  margin: 0px;
  margin-bottom: 20px;
  position: relative;
  color: #06430F;
  width: 95%;
  height: 100px;
  font-weight: 500;
  font-size: 2.5em;
}


video {
  margin: 100px auto 10px;
  width: 95%;
  height: 100%;
  border-radius: 20px;
}

.flip {
  position: absolute;
  z-index: 1;
  right: 10px;
  top: 90px;
  width: 50px;
  font-size: 30px;
  background-color: rgb(207, 135, 217);
}

div {
  box-sizing: border-box;
}

@media only screen and (max-width: 600px) {
  html {
    font-size: 13px;
    margin: 0;
    padding: 0;
  }

  .box{
    padding: 0;
    overflow: hidden;
  }

  body {
    overflow: hidden;
  }

  .gradient-blob:nth-child(2) {
    top: 500px;
    right: 10px;
  }

  .gradient-blob:nth-child(3) {
    right: 20px;
  }

}