@import url('https://fonts.googleapis.com/css2?family=Genos:ital,wght@0,100..900;1,100..900&display=swap');

/*-----------------------------------*/


* {
  box-sizing: border-box;
}

*, html, body {
  cursor: url(usahana-assets/cursora.png), auto !important;
}

a {
  cursor: url(usahana-assets/cursorb.png), auto !important;
}


body {
  background-color: #5ce887;
  margin: 0px;
}

.capsule {
  color: white;
  width: 600px;
  height: 398px;
  display: flex;
  align-items: center;
  position: relative;
}

#wrapper {
  -webkit-overflow-scrolling: touch;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: var(--viewport-height);
  overflow: hidden;
  margin: auto;
  display: flex;
  width: 100%;
  z-index: 2;
}

:root {
  --viewport-height: 100vh;
}

.blocks {
  width: 210px;
  height: 398px;
  position: absolute;
}

.blocks.one {
  background-color: #a291da;
  background: repeating-linear-gradient( 50deg, #af9fe4, #af9fe4 10px, #a291da 10px, #a291da 20px );
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  left: 0px;
  z-index: 1;
}

.blocks.two {
  background-image: radial-gradient(rgb(91, 192, 255) 30%, transparent 30%), radial-gradient(rgb(91, 192, 255) 30%, transparent 30%);
  background-position: 0px 0px, 8px 8px;
  background-size: 16px 16px;
  background-color: rgb(26, 163, 254);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.circle {
  background: white;
  padding: 5px;
  width: 210px;
  height: 210px;
  bottom: 20px;
  left: 20px;
  position: absolute;
  border: 7px solid #5ce887;
  border-radius: 999px;
  z-index: 2;
}

.scrollbox {
  background: white;
  width: 85%;
  height: 280px;
  padding: 5px;
  border: 7px solid #5ce887;
  overflow: scroll;
  position: absolute;
  font-size: small;
}

/*NAV*/
.topnav {
  padding-right: 5px;
  background-color: white;
  position: absolute;
  border: 4px solid #1b0a5a;
  border-bottom-right-radius: 20px;
  width: 85%;
  top: 10px;
  display: flex;
  flex-direction: row-reverse;
  right: 10px;
  z-index: 2;
}

.topnav a {
  float: left;
  display: block;
  color: #1b0a5a;
  text-align: center;
  padding: 10px 12px;
  text-decoration: none;
}

.navscroll {
  width: fit-content;
  display: flex;
}

.topnav a:hover {
  background-color: #1b0a5a;
  color: white;
}

/*HR*/
line {
  border-top: 2px dashed lightpink;
  width: 95%;
  height: 2px;
  margin: 5px 0px;
  display: block;
}

/*IMG*/
img.one {
  width: 500px;
  left: -5px;
  bottom: -50px;
  animation: spinner 10s linear infinite;
  position: absolute;
}

img.two {
  width: 320px;
  bottom: 5px;
  left: 75px;
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

img.three {
  width: 100px;
  bottom: 5px;
  right: 5px;
  position: absolute;
  z-index: 3;
}

img.four {
  width: 145px;
  top: 120px;
  left: 10px;
  position: absolute;
  z-index: 2;
}

img.five {
  width: 90px;
  top: -20px;
  transform: rotate(-10deg);
  left: -60px;
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

/*FONTS*/
p, a, .topnav a {
  font-family: "Genos", sans-serif;
  font-style: normal;
  margin: 0px;
  font-weight: 600;
  color: #1b0a5a;
}

a.home {
  font-family: "Genos", sans-serif;
  font-style: normal;
  margin: 0px;
  font-weight: 600;
  color: white;
  bottom: 10px;
  right: 90px;
  position: absolute;
  filter: drop-shadow(0px 0px 0px #1b0a5a) drop-shadow(0px -1px 0px #1b0a5a) drop-shadow(1px 0px 0px #1b0a5a) drop-shadow(-1px 1px 0px #1b0a5a) drop-shadow(1px 0px 0px #1b0a5a);
  z-index: 4;
}

span {
  position: relative;
}

span.a {
  left: 56px;
}

span.b {
  left: 32px;
}

span.c {
  left: 10px;
}

span.d {
  left: 13px;
}

span.e {
  left: 25px;
}

/*ANIMATION*/
@keyframes spinner {
  to { transform: rotate(360deg); }
}

.spinner {
  display: inline-block; width: 50px; height: 50px;
  border-radius: 50%;
  box-shadow: inset -2px 0 0 2px #0bf;
}


/*MOBILE*/
@media screen and (max-width: 600px) {
  :root {
    --viewport-height: 87vh;
  }
}

@media screen and (max-width: 600px) {
  .capsule {
    width: 330px;
    height: 218px;
  }
}

@media screen and (max-width: 600px) {
  .blocks {
    width: 115px;
    height: 218px;
  }
}

@media screen and (max-width: 600px) {
  .circle {
    width: 108px;
    height: 108px;
    border-width: 4px;
    bottom: 10px;
  }
}

@media screen and (max-width: 600px) {
  .scrollbox {
    height: 155px;
    border-width: 4px;
  }
}

@media screen and (max-width: 600px) {
  .topnav {
    border-width: 3px;
    top: 5px;
  }
}


/*MOBILE IMG*/
@media screen and (max-width: 600px) {
  img.one {
    width: 280px;
    bottom: -25px;
  }
}

@media screen and (max-width: 600px) {
  img.two {
    width: 170px;
    left: 47px;
  }
}

@media screen and (max-width: 600px) {
  img.three {
    width: 50px;
    right: 2px;
    bottom: 2px;
  }
}

@media screen and (max-width: 600px) {
  img.four {
    width: 80px;
    top: 70px;
    left: 5px;
  }
}

@media screen and (max-width: 600px) {
  img.five {
    width: 50px;
    top: -10px;
    left: -20px;
  }
}

/*MOBILE FONT*/
@media screen and (max-width: 600px) {
  p, a, b {
    font-size: 8px;
    position: relative;
  }
}

@media screen and (max-width: 600px) {
  a.home {
    font-size: 10px;
    right: 45px;
    bottom: 5px;
  }
}

@media screen and (max-width: 600px) {
  .topnav a {
    font-size: 10px;
    padding: 6px 3px;
  }
}

@media screen and (max-width: 600px) {
  span.a {
    left: 26px;
  }
}

@media screen and (max-width: 600px) {
  span.b {
    left: 16px;
  }
}





















