body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background-color: #252525;
    color: #FFFFFF;
}

.main-container {
  overflow: hidden;
}

.main-container,
.main-container * {
  box-sizing: border-box;
}

input,
select,
textarea,
button {
  outline: 0;
}

.main-container {
  position: relative;
  width: 428px;
  height: 926px;
  margin: 0 auto;
  background: #252525;
  overflow: hidden;
}
.heading {
  position: relative;
  width: 428px;
  height: 86px;
  margin: 0 0 0 0;
  background: #252525;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.success {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  width: 196px;
  height: 21px;
  top: 45px;
  left: 116px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  line-height: 21px;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
}
.frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  gap: 30px;
  position: relative;
  width: 328px;
  margin: 215px 0 0 50px;
  z-index: 2;
}
.success-icon{
  flex-shrink: 0;
  position: relative;
  width: 123px;
  height: 123px;
  background: url("image/successicon.svg")
    no-repeat center;
  background-size: cover;
  z-index: 3;
	
  animation: spin 1s;
}

@keyframes spin{
	0%{
		scale: 0.1;
	}
	100%{
		transform: rotate(360deg);
	}
}


.message {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  width: 328px;	
  z-index: 4;
  
  animation-duration: 1s;
  animation-name: textzoom;
  animation-timing-function: ease;
	
}

@keyframes textzoom{
	0%{
		scale: 0.1;
	}
	50%{
		scale: 1.2;
	}
	100%{
		
	}
}

.message a{
    text-decoration: none; 
    color: inherit;
}
.payment-successful {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 30px;
  color: #00fff5;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  white-space: nowrap;
  z-index: 5;
}
.transaction-details {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  width: 328px;
  height: 80px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 20.16px;
  text-align: center;
  z-index: 6;
}
.tap-anywhere {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  width: 328px;
  height: 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 400;
  line-height: 15.12px;
  text-align: center;
  z-index: 7;
}
