
body {
  margin: 0 auto;
  background-color: #f5f5f5;
}
.container {
  display: grid;
  height: 100vh;
  width: 100vw;
  background-color: #f5f5f5;
  justify-content: center;
}

.dnte-opt-box {
  background-color:#f5f5f5;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 33vh;
  width: 33vw;
  border-radius: 5px;
  opacity: 1;
}

.bx1 {
  background-image: url(pypl-logo.png);
}

.bx2 {
  background-image: url(zell.png);
}

.bx3 {
  background-image: url(cash.png);
}


.bx1:hover, .bx3:hover {
  opacity: .3;
  cursor: pointer;
  transition: 1s ease;
}

input[type=button] {
  position:absolute;
  background-image: url(bbtn.png);
  background-size: contain;
  background-repeat: no-repeat;
  border-style: none;
  background-color: #f5f5f5;
  font-size: .75em;
  height: 7vh;
  width: 7vw;
  opacity: .3;
}

input:hover {
  opacity: 1;
  cursor: pointer;
  transition: 1s ease;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.bx2:hover .middle{
  opacity: 1;
}

.text {
  cursor:copy;
  background-color: #f5f5f5;
  border-radius: 5px;
  color:  black;
  padding-left: 4em;
  padding-right: 4em;
  padding-top: 4em;
  padding-bottom: 4em;
  font-family: 'Lato', sans-serif ;
  font-size: 2em;
}