@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  background-image: url("../Images//stage.png");
  background-position: contain;
  background-repeat: no-repeat;
  background-color: rgb(245, 237, 228);
}
.container {
  margin-top: 10%;
  text-align: center;
  width: 100%;
  height: 90vh;
  transition: all 5s;
}

.introText {
  width: 100%;
  margin-top: 2.5%;
  text-align: center;
}
h1 {
  margin-left: 10%;
  margin-right: 10%;
  color: rgb(245, 237, 228);
}
#taiso {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  color: rgb(245, 237, 228);
  padding: 5px;
  cursor: pointer;
}
#taiso:hover {
  color: rgb(248, 206, 158);
  font-weight: bold;
}
.btn {
  text-decoration: none;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  background-color: #fff;
  border-radius: 40em;
  border-style: none;
  box-shadow: rgb(248, 206, 158) 0 -20px 10px inset;
  box-sizing: border-box;
  color: #000000;
  letter-spacing: -0.25px;
  padding: 0.6rem 1rem;
  text-align: center;
  transition: all 0.15s;
  cursor: pointer;
}

.btn:hover {
  background-color: rgb(248, 221, 190);
  box-shadow: rgb(140, 104, 62) 0 -6px 8px inset;
  transform: scale(1.1);
}

.btn:active {
  transform: scale(1.1);
}
