*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins",sans-serif;
}
body{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url(bg.png) no-repeat center center fixed;
  background-size: cover;
}
.wrapper {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.container {
  background-color: #4c4c9bb0;
  backdrop-filter: blur(10px);
  height: calc(15vmin * 5);
  width: calc(15vmin * 4);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 15px;
  gap: 10px;
  border-radius: 10px;
  box-shadow: 0 10px 30px #5a5ab4;
}
.container div {
  position: relative;
  height: 100%;
  width: 100%;
}
button {
  width: 100%;
  margin-top: 30px;
  background-color: #5a5ab4;
  padding: 18px 0;
  border: none;
  outline: none;
  cursor: pointer;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 3.5vmin;
  border-radius: 5px;
}

.quad-circle-1 {
  clip-path: circle(100% at 0 0);
}
.quad-circle-2 {
  clip-path: circle(100% at 100% 0);
}
.quad-circle-3 {
  clip-path: circle(100% at 100% 100%);
}
.quad-circle-4 {
  clip-path: circle(100% at 0 100%);
}
.triangle-1 {
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.triangle-2 {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.triangle-3 {
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.triangle-4 {
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
.circle {
  border-radius: 50%;
}
