@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;800&display=swap");

html {
  scroll-behavior: smooth;
  cursor: none;
}
button,
a {
  cursor: none;
}
.courtain1 {
  width: 100vw;
  height: 100vh;
  background: #000;
  position: fixed;
  z-index: 30;
}
.courtain2 {
  width: 100vw;
  height: 100vh;
  background: rgb(69, 69, 69);
  position: fixed;
  z-index: 20;
}
.courtain3 {
  width: 100vw;
  height: 100vh;
  background: rgb(115, 115, 115);
  position: fixed;
  z-index: 10;
}
.circle {
  position: fixed;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
  left: -100px;
  top: 50%;
  /* background-color: rgba(2, 2, 2, 0.5); */
  z-index: 5;
  border: 2px solid black;
  height: 50px;
  width: 50px;
  transition: none;
}
body {
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  margin: 0;
  padding: 0; /* Hide vertical scrollbar */
  overflow-x: hidden;
  box-sizing: border-box;
  scroll-behavior: smooth;
  cursor: none;
}

@media (max-width: 600px) {
  .circle {
    display: none;
  }
  body {
    cursor: auto;
  }
}
a:hover {
  text-decoration: none;
}
h1::selection {
  background: rgba(255, 42, 42, 0.8);
}
p::selection {
  background: rgba(255, 42, 42, 0.8);
}
li::selection {
  background: rgba(255, 42, 42, 0.8);
}
span::selection {
  background: rgba(255, 42, 42, 0.8);
}
a::selection {
  background: rgba(255, 42, 42, 0.8);
}
* {
  box-sizing: border-box;
}
/* section {
    scroll-snap-align: end;
}
.container {
    scroll-behavior: smooth;
    box-sizing: border-box;
    scroll-snap-type: y mandatory;
    overflow-x: hidden;
    overflow-y:scroll;
    height: 100vh;
} */
progress {
  position: fixed;
  -webkit-appearance: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  border: none;
  z-index: 2;
}
progress::-webkit-progress-bar {
  background: transparent;
}
progress::-webkit-progress-value {
  background: black;
}

#Home {
  box-sizing: border-box;
  position: relative;
  width: 100vw;
  height: 105vh;
  display: grid;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
  justify-items: center;
}
#Home > img {
  max-width: 100px;
}

#Home > h1 {
  font-size: 4rem;
  margin: 0;
}
#Home > p {
  text-align: center;
  padding: 0 300px;
}

/* From uiverse.io */
.fancy {
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 0;
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 1.25em 2em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: all 0.3s ease-in-out;
  user-select: none;
  font-size: 13px;
}

.fancy::before {
  content: " ";
  width: 1.5625rem;
  height: 2px;
  background: black;
  top: 50%;
  left: 1.5em;
  position: absolute;
  transform: translateY(-50%);
  transform-origin: center;
  transition: background 0.3s linear, width 0.3s linear;
}

.fancy .text {
  font-size: 1.125em;
  line-height: 1.33333em;
  padding-left: 2em;
  display: block;
  text-align: left;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
}

.fancy .top-key {
  height: 2px;
  width: 1.5625rem;
  top: -2px;
  left: 0.625rem;
  position: absolute;
  background: #e8e8e8;
  transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
  height: 2px;
  width: 1.5625rem;
  right: 1.875rem;
  bottom: -2px;
  position: absolute;
  background: #e8e8e8;
  transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
  height: 2px;
  width: 0.625rem;
  right: 0.625rem;
  bottom: -2px;
  position: absolute;
  background: #e8e8e8;
  transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
  color: white;
  background: black;
}

.fancy:hover::before {
  width: 0.9375rem;
  background: white;
}

.fancy:hover .text {
  color: white;
  padding-left: 1.5em;
}

.fancy:hover .top-key {
  left: -2px;
  width: 0px;
}

.fancy:hover .bottom-key-1,
.fancy:hover .bottom-key-2 {
  right: 0;
  width: 0;
}
@media only screen and (max-width: 500px) {
  #Home > img {
    position: absolute;
    top: 20px;
    max-width: 50px;
  }
  #Home > h1 {
    font-size: 2.4rem;
    padding: 0 15px;
  }
  #Home > p {
    padding: 0 15px;
  }
  .fancy {
    font-size: 11px;
  }
}

#Introduction {
  display: grid;
  row-gap: 20px;
  align-content: flex-start;
  justify-content: center;
  justify-items: center;
  text-align: center;
}
.intro-text {
  max-width: 50%;
}

@media only screen and (max-width: 500px) {
  #Introduction {
    align-content: center;
  }
  #Introduction > div > h1 {
    font-size: 1.2em;
    margin-bottom: 0;
  }
  .thisnone {
    display: none;
  }
  .intro-text {
    max-width: 90%;
  }
}

#Information {
  width: 100vw;
  height: 100vh;
  display: grid;
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
  text-align: center;
}
#Information > h1 {
  margin: 0;
  font-size: 4em;
}
#Information > p {
  max-width: 60%;
}

#Information > img {
  z-index: 1;
  margin-top: 5%;
  width: 80vw;
}
.phone {
  display: none;
}

@media only screen and (max-width: 500px) {
  #Information > h1 {
    font-size: 2.4em;
  }
  #Information > p {
    max-width: 90%;
  }
  #Information > img {
    margin-top: 5%;
  }
  .phone {
    display: block;
  }
  .dsktop {
    display: none;
  }
}

#both {
  width: 100vw;
  height: 100vh;
  position: relative;
}
#both > a {
  position: absolute;
  font-weight: 300;
  bottom: 5px;
  right: 0;
  left: 0;
  text-align: center;
  color: #000;
}
#Price {
  width: 100vw;
  height: auto;
  display: grid;
  align-items: center;
  align-content: flex-start;
  justify-items: center;
  background-color: #000;
  color: #fff;
}
#Price > div {
  margin: 3% 0;
}
#Price > div > * {
  margin: 0;
  text-align: center;
}
#Price > div > p {
  font-size: 1.5em;
}
#Price > div > h1 {
  font-size: 4rem;
}

#Price > div > ul {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  column-gap: 15px;
}
#Price > div > ul > li {
  list-style-type: none;
}
#Contact {
  margin-top: 20vh;
  width: 100vw;
  height: auto;
}

#Contact > h1 {
  margin: 2% 0;
  font-size: 4em;
  text-align: center;
}
#Contact > div {
  width: 100vw;
  display: grid;
  align-items: center;
  justify-items: center;
  align-content: center;
  justify-content: center;
}
#Contact > div > a {
  margin-top: 20%;
  text-decoration: underline;
}
@media only screen and (max-width: 500px) {
  #Price > div {
    padding: 10% 0;
  }
  #Price > div > p {
    font-size: 0.9em;
  }
  #Price > div > h1 {
    font-size: 2rem;
    margin: 20px 0;
  }
  #Price > div > ul {
    margin-top: 0px;
    padding: 0;
    display: grid;
    row-gap: 5px;
  }
  #Contact {
    margin: 0;
    height: 50%;
    display: grid;
    align-items: center;
    align-content: center;
    justify-items: center;
  }
  #Contact > h1 {
    font-size: 2em;
    text-align: center;
    padding: 0 10%;
  }
}
