html {
    height:100%;
  }
  
  body {
    margin:0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .image-man{
    width: 35%;
    margin: auto;
    margin-top: 2%;
    margin-bottom: 1%;
    
  }

  image-boy {
    margin-top: 3%;
    margin: 2%;
    display: flex;
    justify-content: center;

  }
  
  .bg {
    animation:slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
    bottom:0;
    left:-50%;
    opacity:.5;
    position:fixed;
    right:-50%;
    top:0;
    z-index:-1;
  }
  
  .bg2 {
    animation-direction:alternate-reverse;
    animation-duration:4s;
  }
  
  .bg3 {
    animation-duration:5s;
  }
  
  .content {
    background-color:rgba(255,255,255,.8);
    border-radius:.25em;
    box-shadow:0 0 .25em rgba(0,0,0,.25);
    box-sizing:border-box;
    left:50%;
    padding:10vmin;
    position:fixed;
    text-align:center;
    top:50%;
    transform:translate(-50%, -50%);
  }
  
  h1 {
    /* font-family:monospace; */
    font-size: 14px;
    color:aliceblue;
  }
  
  @keyframes slide {
    0% {
      transform:translateX(-25%);
    }
    100% {
      transform:translateX(25%);
    }
  }
  .prev,
.next 
{
  opacity: 0;
  transition: opacity 800ms;
}

.outerBox:hover .prev,
.outerBox:hover .next
{
    opacity: 1.0;
}
.wrapper {
  font-family: 'Space Mono', monospace;
  padding: 0rem clamp(1rem, 2vw, 3rem);
  width: 600px;
  /* display: block; */
  text-align: center;
  margin: 0 auto;
  vertical-align: middle;
}

.roles {
    font-size: 30px;
    height: 50px;
    vertical-align: middle;
    overflow: hidden;
}

.roles div {
    height: 50px;
    transition: margin-top 1s ease-in-out;
}

.gridContainer{
  display: grid;
  grid-template-rows: 2fr 2fr;
  margin-bottom: 0 !important;
  align-items: center;
  justify-content: center;
}

/* .footer{
  display: flex;
  justify-content: baseline;
} */
.footer {
  /* position: fixed;
  left: 0;
  bottom: 0;
  width: 100%; */
}
.mainText{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}