html, body {
  padding: 0px;
  margin: 0px;
  color: #313d47;
  outline: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  background-color: #FFF;
  font-family: Georgia, "serif";
}
html, body {
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
}
* {
  outline: none !important;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
.align-center {
  text-align: center;
}
dl, ol, ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.container-main {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100vh;
  min-height: 800px;
}
section {
  position: relative;
  padding: 0 2rem;
  width: 100%;
  text-align: center;
}
.logo {
  margin: 0 auto;
}
.logo img {
  height: 500px;
}
p {
  font-size: 1rem;
  margin: 0;
  margin-bottom: 1rem;
}
strong, a {
  font-weight: bolder;
}
footer {
  margin-top: 4rem;
  padding: 0 2rem;
  text-align: center;
  width: 100%;
}
footer p {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
/*RESPONSIVE*/
@media (max-width: 1400px) {
  html, body {
    font-size: 16px;
  }
  .logo img {
    height: 420px;
  }
}
@media (max-width: 991px) {
  html, body {
    font-size: 14px;
  }
  .logo img {
    height: 380px;
  }
}
@media (max-width: 767px) {
  html, body {
    font-size: 14px;
  }
  .logo img {
    height: 300px;
  }
  .container-main {
    height: 600px;
    min-height: 600px;
  }
}
/*selection*/ ::-moz-selection {
  color: white;
  background: black;
}
::selection {
  color: white;
  background: black;
}
/*end selection*/