* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.container {
  background: rgb(116, 77, 152);
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container button {
  padding: 10px 40px;
  font-size: 30px;
  border-radius: 20px;
  border: 0px;
  cursor: pointer;
}
.container button:hover {
  background: rgb(116, 77, 152);
  color: white;
  border: 2px solid white;
  transition: 0.3s;
}

.popup {
  width: 400px;
  background-color: white;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 4px 0px,
    rgba(0, 0, 0, 0.32) 0px 2px 16px 0px;
    position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-50% ) scale(0.1);
  visibility: hidden;
  transition: transform 0.5s,  scale 0.5s, top 0.5s;
}

.open-popup{
    top: 50%;
    visibility: visible;
    transform: translate(-50%,-50% ) scale(1);
}



.popup img {
    width: 100px;
    margin-top: -50px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 4px 0px,
    rgba(0, 0, 0, 0.32) 0px 2px 16px 0px;
    border-radius: 50%;
}
.popup h2{
    font-size: 40px;
    font-weight: 500;
}
.popup p {
  margin-top: 10px;
}
.popup button {
  font-size: 16px;
  padding: 10px 30px;
  width: 100%;
  margin-top: 30px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 4px 0px,
    rgba(0, 0, 0, 0.32) 0px 2px 16px 0px;
  background: rgb(125, 239, 125);
}
