* {
  box-sizing: border-box;
}

:root {
  --bg: #010528;
  --text: #ffffff;
  --anim: 360ms cubic-bezier(0.2, 0.9, 0.2, 1);
  --top-safe: 50px;
  --control-size: 72px;
  --control-gap: 28px;
  --main-w: clamp(30%, 40%, 70%);
  --side-w: clamp(10%, 30%, 40%);
  --offset: 10%;
  --small-offset: 6%;
  --max-wrap: clamp(420px, 60vw, 1100px);
}


body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow: hidden;
  text-align: center;
  border: solid;
  width: 100vw;
  height: 100vh;
  padding: 30px;
}


.CenterLogo {
  margin: 5%;
  margin-top: 5vh;
  width: 40vw;
  align-self: center;
}

.LogoTopLeft {
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  margin: 1%;
}

.Button1 {
  margin-top: 1vh;
  padding: 12px 42px;
  border-radius: 40px;
  font-size: 4vw;
  font-weight: 700;
  background-color: white;
  color: #010528;
  cursor: pointer;

}

.Copyright {
  position: fixed;
  width: 100%;
  bottom: 2px;
  color: white;
  font-size: 1vw;
  margin-top: auto;
  margin-bottom: 5px;
  text-align: center;
}


@media only screen and (orientation: portrait) {
  .Button1 {
    font-size: 8vw;
  }

  .CenterLogo {
    margin-top: 10vh;
    width: 80vw;
  }

  .Copyright {
    font-size: 2vw;
  }
}