body, html {
    margin: 0;
    padding: 0;
    height: 100dvh;
    width: 100%;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    background-color: #5271ff;
    font-family: "calibri";
}

h1 {
    font-size: 2.667vw;
    margin: 0;
    margin-bottom: 10px;
    margin-top: 10px;
}

h2 {
    font-size: 1.667vw;
    margin: 0;
    margin-bottom: 10px;
}

button {
    cursor: pointer;
    border-radius: 10px;
    background-color: #5ce1e6;
    height: 25px;
    width: auto;
}
button:hover {
    transform: scale(1.05); /* shrink slightly when clicked */
    transition: transform 0.1s ease;
}
button:active {
    transform: scale(0.95); /* shrink slightly when clicked */
    transition: transform 0.1s ease;
}

input {
    border-radius: 5px;
    border: black solid 3px;
    background-color: #5271ff;
}

small {
    display: flex;
    margin: 2px;
    position: fixed;
    width: 250px;
    bottom: 0;
    left: 0;
}

#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 0;

    background-image: url('background.webp'); /* same image */
    background-repeat: repeat;
    background-size: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
    image-rendering: pixelated;
    will-change: background-position;
}

#fpc {
    font-size: 1.667vw;
    margin: 0;
    margin-bottom: 10px;
}

#fps {
    font-size: 1.667vw;
    margin: 0;
    margin-bottom: 25px;
}

.dropdown {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0px;
    right: 0px;
    height: auto;
    width: auto;
    margin: 10px;
    text-align: center;
}
.dropdown img{
    align-self: flex-end;
}

.container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.dropdown-content {
  display: none;
  position: relative;
  background-color: #38b6ff;
  z-index: 1;
  align-items: right;
  width: 100px;
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
}

#dots {
    display: block;
    width: 50px;
    height: 50px;
    z-index: 10;
    cursor: pointer;
    top: 0;
    right: 0;
}

.text {
    position: absolute;
    top: 0;
    text-align: center;
}

.shop {
    position: absolute;
    bottom: 0;
    text-align: center;
    margin: 0;
    margin-bottom: 20px;
}

#button {
  height: 13.25dvw;
  aspect-ratio: 1;
  cursor: pointer;
  user-select: none;
  z-index: 1;
  transition: transform 0.1s ease;
}

/* Grows slightly on hover */
#button:hover {
  transform: scale(1.05);
}

/* Shrinks on click */
#button.clicked {
  transform: scale(0.95);
}

/* Prevent hover from overriding clicked */
#button.clicked:hover {
  transform: scale(0.95);
}

.signIn {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    margin: 10px;
}
.signIn button {
    height: 25px;
    width: 60px;
}
.signIn p {
    margin: 0px;
    margin-top: 5px;
}

.signBar {
    display: none;
    position: fixed;       /* fixed so it stays centered on viewport */
    top: 50%;              /* move down 50% of viewport height */
    left: 50%;             /* move right 50% of viewport width */
    transform: translate(-50%, -50%); /* shift back up and left by half the div size */
    z-index: 9999;         /* very high z-index to be on top */
    pointer-events: auto;  /* ensure it can be interacted with */
    background: #38b6ff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border: 2px black solid;
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.show {display:block;}
.show2 {
    display:flex;
    flex-direction: column;
}

.dropBtn {
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    margin-bottom: 10px;
    width: 100px;
}
.vers {
    margin-bottom: 0;
    width: 100px;
    font-size: 13px;
}
.poos {
    margin: 0;
    margin-bottom: 10px;
    width: 100px;
    font-size: 16px;
    font-weight: bold;
}

.blur {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(10px); /* amount of blur */
  pointer-events: none; /* make it click-through */
}

#checkText {
    font-size: 14px;
}