@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

  body {
    background: #fff;
    color: #000;
    margin: 0 50px;
	font-family: 'Open Sans', sans-serif;
  }


.detail {
	width: 30%;
	float: right;
}

  .tiles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .tile {
    position: relative;
    float: left;
    width: 60%;
    height: 100%;
    overflow: hidden;
	  margin-left: 100px;
  }

  .photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: transform .5s ease-out;
  }

  .txt {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 10%;
    left: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 9px;
    line-height: 12px;
    text-align: center;
    cursor: default;
	  background-color: rgba(255,255,255,0.50);
	  padding: 10px 0;
  }

  .x {
    font-size: 32px;
    line-height: 32px;
  }