* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  background-color: #f2f2f2;
  font-family: "Raleway", sans-serif;
  display: table;
}

.main-wrapper {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.card {
  width: 300px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  text-align: left;
}

.card--inline {
  display: inline-block;
  margin: 0 20px;
}

.short {
  position: relative;
  width: 100%;
  color: #ffffff;
}

.card__short {
  height: 380px;
}

.short__info {
  float: left;
  font-weight: 700;
}

.short__text {
  position: absolute;
  width: 100%;
  padding: 20px;
}

.short__text:after {
  content: "";
  display: table;
  clear: both;
}

.short__icon {
  float: right;
  font-size: 40px;
}

.short__temperature {
  font-size: 40px;
}

.card__image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card__image-wrapper img {
  width: 100%;
}

.short__location {
  text-transform: uppercase;
}

.card__detail {
  padding: 20px;
  font-size: 16px;
}

.detail__date {
  font-weight: 700;
  padding-bottom: 8px;
}

.detail__weather {
  font-weight: 500;
}
