@import url('https://fonts.googleapis.com/css?family=Montserrat');

html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
  margin: 0;
}

body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  height: 100%;
}

.column {
  float: left;
  width: 50%;
  padding: 10px;
}

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

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

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.width-container {
  max-width: 500px;
  /*min-height: 100%;*/
  margin: auto;
  /*animation-duration: 1s;
  animation-delay: 6s;
  animation-name: scaleLogo;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;*/
}

@keyframes scaleLogo {
  0% {
    max-width: 500px;
  }
  100% {
    max-width: 200px;
  }
}

.responsive-svg-container {
  display: inline-block;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  vertical-align: middle;
  overflow: hidden;
}

.responsive-svg-content {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.responsive-svg-content .star-path {
  stroke-width: 0.5px;
  fill: white;
  stroke-dashoffset: 13361.146484375;
  stroke-dasharray: 13361.146484375px, 13361.146484375px;
  animation-duration: 15s;
  animation-name: responsiveStarPath;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

@keyframes responsiveStarPath {
  0% {
    stroke-dashoffset: 13361.146484375;
    /*stroke-dasharray: 800, 800;*/
    fill: white;
  }
  40% {
    stroke-dashoffset: 0;
    fill: white;
  }
  60% {
    stroke-dashoffset: 0;
    fill: #f1f1f1;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #f1f1f1;
    /*stroke-dasharray: 13361.146484375, 13361.146484375;*/
  }
}

.responsive-svg-content .r-path {
  stroke-width: 1px;
  fill: white;
  stroke: #62cb70;
  stroke-dashoffset: 919.50732421875;
  stroke-dasharray: 919.50732421875px, 919.50732421875px;
  animation-duration: 3s;
  animation-delay: 1s;
  animation-name: responsiveRPath;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes responsiveRPath {
  0% {
    stroke-dashoffset: 919.50732421875;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.responsive-svg-content .s-path{
  stroke-width: 1px;
  fill: white;
  stroke: #62cb70;
  stroke-dashoffset: 817.93798828125;
  stroke-dasharray: 817.93798828125px, 817.93798828125px;
  animation-duration: 3s;
  animation-delay: 2s;
  animation-name: responsiveSPath;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes responsiveSPath {
  0% {
    stroke-dashoffset: 817.93798828125;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.footer {
  height: 20px;
  margin-top: -20px;
  text-align: center;
  color: #333333;
  font-family: ;
  font-size: 10px;
}

@media screen and (max-width: 375px) {
  .width-container {
    margin: auto;
  }

  @keyframes scaleLogo {
    0% {
      max-width: 500px;
    }
    100% {
      max-width: 100px;
    }
  }

}

@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    text-align: left;
  }
}