* {
  box-sizing: border-box;
}
body{
  overflow: hidden;
}
.floor{
  width: 960px;
  height: 2000px;
  display: block;
  margin: auto;
  box-shadow: rgba(0, 0, 0, 0.696) 0px 22px 70px 4px;
  background: linear-gradient(90deg, #1CB5E0 0%, #000851 100%);
  border-radius: 20px;
}

body {

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: sans-serif;
}

a {
  text-decoration: none;
}

h1 {
  font-family: sans-serif;
  font-size: 18pt;
  font-weight: 150;
  text-shadow: 0px 0px 3px rgba(0,0,0,0.64);
}

.card .wrapper {
  background-color: #fff;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.47) 0px 15px 25px, rgba(0, 0, 0, 0.353) 0px 5px 10px;
}

p{
  text-shadow: 0px 0px 3px rgba(0,0,0,0.84);
}

.row {
  max-width: 950px;
  padding-right: 20px;
  margin: 50px auto ;
}

.card {
  float: left;
  padding: 1.7rem 1.7rem;
  width: 50%;
}


.card .wrapper:hover .data {
  transform: translateY(0);
}
.card .data {
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateY(calc(70px + 1em));
  transition: transform 0.3s;
}
.card .data .content {
  padding: 1em;
  position: relative;
  z-index: 99;
}
.card .author {
  font-size: 12px;
}
.card .title {
  margin-top: 10px;
}
.card .text {
  height: 70px;
  color: #fff;
  margin: 0;
}
.card input[type=checkbox] {
  display: none;
}
.card input[type=checkbox]:checked + .menu-content {
  transform: translateY(-60px);
}


