body{
    background: #291b16f2;
    color: white;
    padding:10px;
}
section {
    background-color: #404040;
    border: 2px solid #75adb7;
    height: 500px;    
    position:relative;
}
.withtext{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease-out;
}
h1{
    text-align: center;
}
.withtext:hover,
.withtext:active{
  border: 4px solid white;
  transform: scale(.9);
  background-color: yellow !important;
  color:#404040 !important;
}