* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: transparent;
}
:root {
  --primary-color: #3d365c;
  --secondary-color: #7c4585;
  --third-color: #fccaff;
  --basic-color: #ffffff;
  --text-color: #333;
  --linear-gradiant: linear-gradient(#7c4585, #3d365c);
}
body {
  width: 100%;
  min-height: 100vh;
  background: var(--primary-color);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
/* @media (max-width: 480px) {
  .toast {
  width: 250px;
  }
  } */
.container {
  width: 100%;
  height: 100vh;
  background: #3c5077;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn {
  padding: 10px 60px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid transparent;
  outline: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn:hover {
  border: 1px solid #000;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.549);
}
.popup {
  width: 320px;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  background: #fff;
  text-align: center;
  padding: 0 30px 30px;
  color: #333;
  visibility: hidden;
  transition: transform 0.4s ease, top 0.4s ease;
}
.open-popup {
  visibility: visible;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
}
.popup i {
  margin-top: -50px;
  font-size: 100px;
  color: rgb(56, 195, 10);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.574);
}
.popup h2 {
  /* font-size: ; */
  margin-top: 10px;
}
.popup button {
  margin-top: 35px;
  padding: 10px 90px;
  cursor: pointer;
  border-radius: 5px;
  border: 0;
  outline: 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: rgb(56, 195, 10);
  transition: box-shadow 0.3s ease;
}
.popup button:hover {
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.549);
}
.footer {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 90%;
  font-size: 12px;
  margin: auto;
  text-align: center;
  font-weight: 400;
  color: var(--third-color);
}
