#corners{
    width: 150px;
    height: 150px;
    border-radius: 6px;
    border: 1px solid black;
    transform: translate(150px, 0px);
    padding: 5px;
}

#corners:hover{
    box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}

div#frame{
    transform: translate(150px, 0px);
    width: 50%;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2),  0 6px 10px 0 rgba(0,0,0,0.19);
    margin-bottom: 25px;
}

div#container{
    text-align: center;
    padding: 10px 20px;
}

/*image overlay*/
.container {
    position: relative;
    width: 50%;
  }
  
  .image {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .overlay {
    position: absolute;
    bottom: 0;
    left: 100%;
    right: 0;
    background-color: #008CBA;
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
  }
  
  .container:hover .overlay {
    width: 100%;
    left: 0;
  }
  
  .text1 {
    white-space: nowrap; 
    color: white;
    font-size: 20px;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }


/*centering*/

#center1{
    width: 25%;
    margin: auto;
    display: block;
}

#testing1{
    display: flex;
    justify-content: center;
}

#center2{
    width: 25%;
}

