@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}
a {
  color: #fff;
  text-decoration: none;
}
.wrapper {
  position: relative;
}
.slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: absolute;
}
.slider div {
  height: 100vh;
  background-size: cover;
  background-position: center center;
}
.logo {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9;
  bottom: 0;
}
.logo img {
  width: 500px;
  height: 500px;
}
@media (max-width: 500px) {
  .logo img {
    width: 200px;
    height: auto;
  }
}
.logo .content {
  width: 100%;
  height: auto;
  background: #000;
  text-align: center;
  padding: 10px;
}
.logo .content .info {
  padding-top: 20px;
}
