
@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins";
  box-sizing: border-box;
}

html {
  height: 100vh;
}

body {
  min-height: 100vh;
}

.some-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  text-align: center;
  font-weight: 500;
  font-size: 24px;
}

.pure {
  color: #e75480;
  text-decoration: underline;
  font-weight: 600;
}

.button {
  background-color: #4CAF50;
  /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 100px;
  margin-top: 25px;
}

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  /*opacity: 0;*/
  /*visibility: hidden;*/
  transition: all 0.3s;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  padding: 20px;
  background-color: white;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.popup__text {
  font-size: 1.4rem;
  margin-bottom: 4rem;
}

/*------------------------------------------------------------------------------*/













  
  /*  
  @import url("https://fonts.googleapis.com/css2?family=Skranji&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(#113156, #070731);
  height: 100vh;
  width: 100vw;
}

*/

#container_apex {
  max-width: 100vw;
  height: 100vh;
  position: fixed;
  width: 100%;
  left: 50%;
  top: 0;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: radial-gradient(#f2f4f7 2px, transparent 2px);
  /*background-image: radial-gradient(#203462 2px, transparent 2px);
  background-size: calc(10 * 2px) calc(10 * 2px);
  background-size: calc(10 * 2px) calc(10 * 2px); */
}

.container-inner_apex {
  background: #a4363e;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 5px 6px 0px -2px #620d15, -6px 5px 0px -2px ##0d622f, 0px -2px 0px 2px ##0d622f, 0px 10px 0px 0px ##0d622f, 0px -10px 0px 1px ##0d622f, 0px 0px 180px 90px ##0d622f;
  width: 640px;
}

.content_apex {
  font-family: "Skranji", cursive;
  background: radial-gradient(#fffbf3, #ffe19e);
  padding: 24px;
  box-sizing: border-box;
  border-radius: 20px 18px 20px 18px;
  box-shadow: 0px 0px 0px 6px #5e1e21, 0px 0px 8px 6px #84222b, inset 0px 0px 15px 0px #614506, 6px 6px 1px 1px #e66565, -6px 6px 1px 1px #e66565;
  text-align: center;
}
.content_apex p {
  font-size: 56px;
  padding: 40px;
  box-sizing: border-box;
  color: #461417;
}

.buttons_apex {
  margin-top: 40px;
  display: flex;
  justify-content: normal;
  align-items: center;
  gap: 30px;
  box-sizing: border-box;
}
.buttons_apex button {
  padding: 20px;
  flex: 1;
  border-radius: 20px;
  border: 2px solid #49181e;
  font-family: "Skranji", cursive;
  color: #fff;
  font-size: 32px;
  text-shadow: 1px 2px 3px #000000;
  cursor: pointer;
}
.buttons_apex button.confirm {
  background: linear-gradient(#ced869, #8fc813);
  box-shadow: 0px 0px 0px 4px #7b8414, 0px 2px 0px 3px #304405;
}
.buttons_apex button.confirm:hover {
  box-shadow: 0px 0px 0px 4px #7e1522, 0px 2px 0px 3px #e66565, inset 2px 2px 10px 3px #4e6217;
}
.buttons_apex button.cancel {
  background: linear-gradient(#ea7079, #891a1a);
  box-shadow: 0px 0px 0px 4px #7e1522, 0px 2px 0px 3px #e66565;
}
.buttons_apex button.cancel:hover {
  box-shadow: 0px 0px 0px 4px #7e1522, 0px 2px 0px 3px #e66565, inset 2px 2px 10px 3px #822828;
}  
      
	
	
	