body {
   background-image: url('https://images.pond5.com/blue-abstract-gradient-background-4k-086597457_prevstill.jpeg');
   font-family: 'Nexa';
  
}


@font-face {
    font-family: 'Nexa';
    src: url('Nexa-Heavy.woff2') format('woff2'),
        url('Nexa-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}


.textbox {
  border-width:3px;
  border-style:solid;
  border-color:#e00568;
  background-color:black;
  color:white;
  margin: 24px 36px;
  max-width: 1024px;
  justify-content: center;
  padding: 2px 0px;
}

.imageholder {
  display: flex;
  justify-content: center;
}


.scale-in-center {
	-webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}



@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
