/* <style>
@import url('https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap');
</style> */

.syne-mono-regular {
  font-family: "Syne Mono", monospace;
  font-weight: 400;
  font-style: normal;
}



body {
  font-family: 'Syne Mono', monospace;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  /* background-image: url('https://www.mediafire.com/file/v6vh5yegcay9r5i/mazewallpaper.png/file'); */
  background-color: #000000;
  color: #ffffff;
  font-size: clamp(1rem, 1vw + 0.5rem, 3rem);

}




#headingText {
  font-size: clamp(1rem, 2vw + 1rem, 3rem);
  /* font-size: 34px; */
  font-style: normal;
  font-family: 'Syne Mono', monospace;
}

a:link {
  color: rgb(255, 255, 255);
}

a:visited {
  color: rgb(241, 251, 226);
  /* Visited link */
}

a:hover {
  color: rgb(202, 255, 133);
  /* Mouse over link */
}

a:active {
  color: rgb(241, 251, 226);
  /* Selected link */
}

.flex-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 600px;
  width: 500px;
  border: none;
  background-color: rgb(0, 0, 0);
}

.flex-item {
  background-color: rgb(0, 0, 0);
  padding: 20px;
  margin: 10px;
  flex-grow: 1;
}


.flex-container-riddle {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 800px;
  width: 600px;
  border: solid;
  background-color: rgb(0, 0, 0);
}

.flex-container-intro1 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  border: none;
  width: 300px;
  opacity: 0.5
}

.flex-container-intro2 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 80px;
  border: none;
}

.flex-container-headerNav {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 1px;
  width: 500px;
  border: solid, rgb(253, 253, 253);
  color: black;
  fill-opacity: 0.4;
  background-color: black;
}
.flex-container-intro-text {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  width: 500px;
  border: solid, rgb(253, 253, 253);
  background-color: black;
}


.flex-container-headerNav {
  padding: 20px;
  margin: 20px;
  flex-grow: 1;
  width: 500px;
}

.flex-container-cube {
  padding: 20px;
  margin: 20px;
  flex-grow: 1;
  width: 500px;
  fill-opacity: 0.5;
}





.flex-container-addRiddle {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 300px;
  border: solid, black;
  background-color: rgb(255, 255, 255);
}

.flex-container-details {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 180px;
  width: 500PX;
  border: solid;
  background-color: rgb(0, 0, 0);

}
.flex-container-details-edit {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 100px;
  width: 500PX;
  border: solid;
  background-color: rgb(0, 0, 0);

}
.flex-container-new-riddle {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 460px;
  width: 500PX;
  border: solid;
  background-color: rgb(0, 0, 0);

}


.flex-container-edit {
  color: #ffffff;
  display: flex;
  width: 500px;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: px;
  border: solid;
  background-color: rgb(0, 0, 0);
}

.owned-by-text {
  background-color: #000000;
  color: #bf7df9;
  font-size: 16px;
}

.view-text {
  background-color: #000000;
  color: #be7df6;
  font-size: 16px;
}


button {
 appearance: none;
 background-color: transparent;
font-family: "Syne Mono", monospace;
 border: 0.125em solid #ffffff;
 border-radius: 0.9375em;
 box-sizing: border-box;
 color: #ffffff;
 cursor: pointer;
 display: inline-block;
 font-size: 16px;
 font-weight: 600;
 line-height: normal;
 margin: 0;
 min-height: 3.75em;
 min-width: 0;
 outline: none;
 padding: 1em 2.3em;
 text-align: center;
 text-decoration: none;
 transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
 user-select: none;
 -webkit-user-select: none;
 touch-action: manipulation;
 will-change: transform;
}

button:disabled {
 pointer-events: none;
}

button:hover {
 color: #fff;
 background-color: #1A1A1A;
 box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
 transform: translateY(-2px);
}

button:active {
 box-shadow: none;
 transform: translateY(0);
}