@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #222;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #222;
}

a {
  top: 3%;
  right: 2%;
  width: 50px;
  height: 50px;
  position: absolute;
  cursor: pointer;
  border-radius: 50%;
  background-color: white;
}

a > img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
}

#show_btn {
  padding: 10px;
  font-size: 20px;
}

.del_alert {
  width: 100%;
  height: 100vh;
  background-color: #222;
  position: fixed;
  top: 0%;
  left: 0%;
  display: none;
  justify-content: center;
  align-items: center;
}
.del_alert.active {
  display: flex;
}
.del_alert .alert_box {
  padding: 20px;
  background-color: #fff;
  border: 1px solid gray;
  box-shadow: 0px 0px 20px gray;
  text-align: center;
}
.del_alert .alert_box h2 {
  font-size: 16px;
}
.del_alert .alert_box .sample_box {
  margin: 20px 0px;
  font-size: 14px;
}
.del_alert .alert_box .sample_box input {
  width: 50px;
  padding: 3px;
  outline: none;
  font-size: 14px;
}
.del_alert .alert_box .sample_box input:invalid {
  color: red;
}/*# sourceMappingURL=style.css.map */