html {
  font-family: 'Helvetica', 'sans-serif';
  background-color: #01BDE9;
}

body {
  margin: 0;
  color: #FFE15E;
}

div.container {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

svg {
  display: block;
  margin: 0 auto;
  width: 40px;
  height: auto;
}

h1 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 300;
  text-align: center;
}

.img-title {
  width: 90px;
  height: auto;
  transform: translateY(7px);
}

h1 strong {
  font-weight: 700;
}

h1 strong span {
  color: white;
}

video {
  display: block;
  box-sizing: border-box;
  padding: 0 40px;
  max-width: 100%;
  margin: 0 auto;
}

a.button {
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0px;
  text-transform: uppercase;
  /* font-weight: 600; */

  display: inline-block;
  position: relative;
  padding: 20px 30px;
  -webkit-transition: background-color .3s, color .3s, border-color .3s, -webkit-box-shadow .3s;
  transition: background-color .3s, color .3s, border-color .3s, -webkit-box-shadow .3s;
  transition: background-color .3s, color .3s, border-color .3s, box-shadow .3s;
  transition: background-color .3s, color .3s, border-color .3s, box-shadow .3s, -webkit-box-shadow .3s;
  border: 2px solid transparent;
  border-color: #fff;
  max-width: 325px;
  margin-top: 60px;
  background-color: transparent;
  font-size: 15px;
  text-transform: none;
  vertical-align: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  padding: 13px 30px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  font-style: italic;

  &:hover {
    color: #FFE15E;
    border-color: #FFE15E;
  }
}

a.button.button-home {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: 0;
  margin-bottom: 30px;
  margin-right: 30px;
  padding: 20px 30px;
  font-size: 15px;
  text-transform: italic;
}

.button .css-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;

  &::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 2px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    -webkit-transition: inherit;
    transition: inherit;
    border-color: #fff;
    background-color: #fff;
  }

  &::after {
    content: '';
    display: block;
    position: absolute;
    width: 6.5px;
    height: 6.5px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    background-color: transparent !important;

    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
}

@media (min-width: 768px) {
  video {
    padding: 0;
    width: 670px;
  }
}