@import url(https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700);
*, *:before, *:after {
  box-sizing: border-box;
}

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { 
  li {
    font-size:40px;
  }
 }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }


html, body {
  height: 100%;
}

body {
  position: relative;
  padding: 10px;
  font-family: 'Barlow', serif;
}

.wrap {
  height: 300px;
  width: 300px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.wrap .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url("../img/ola.jpg");
  background-repeat:  no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  overflow: hidden;
}

h1,h3 {
  font-family: 'Bitter', serif;
  text-align: center;
}

h3 {
  color: #1ec1c9;
  text-transform: uppercase;
  margin-top: 40px;
}

li {
  line-height: 25px;
  margin-bottom: 10px;
}

li > strong {
  font-size:20px;
}

.bloque-centro {
  display:block;
  margin-left:auto;
  margin-right:auto;
  max-width: 640px;
}

li i {
  color: black;
  transition: color .35s
}

li:hover i {
 color: #1ec1c9;
 transition: color .35s ease-in-out;
}