a {
  color: #fff;
  text-decoration: none;
}

a:visited {
  color: #fff;
}

a:hover {
  color: #ff6161;
}

.a-logo {
}

.a-logo:hover {
  color: #fff;
}

html {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

body {
  text-align: center;
  overflow: auto;
  height: 100%;
  width: 100%;

  background: linear-gradient(to bottom right, #22162b 30%, #3e274e 80%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #ffffff;

  font-weight: 300;
  position: relative;
  display: flex;
  /* align-items: center; */
  justify-content: center;

  font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
    "Arial", sans-serif !important;
  box-sizing: border-box;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "SF Pro Text","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif; */
  font-weight: 300;
}

h1 {
  font-size: rem;
  /* margin: 70px 50px 50px 50px; */
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
  color: #e4b597;
}

h5 {
  font-size: 18px;
  color: rgb(83, 83, 83);
}

h6 {
  font-size: 14px;
  color: rgb(87, 87, 87);
}

p {
  color: #ada6a2;
  font-size: 16px;
  line-height: 22px;
}

.content {
  width: 100%;
  padding: 2%;
  margin-bottom: 20px;
  max-width: 1200px;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.logo-text {
  vertical-align: middle;
}

.logo-image {
  width: 38px;
  height: 38px;
  vertical-align: middle;
  margin-right: 18px;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 24px;
  }

  .logo-image {
    width: 28px;
    height: 28px;
  }
}

hr {
  width: 100%;
  height: 1px;
  background-color: rgb(69, 58, 78);
  border: none;
}

iframe[seamless] {
  border: none;
}

.btn-small {
  font-size: 14px;
  /* color: */
  background-color: rgb(46, 37, 58);
  /* color: #111; */
  padding: 6px 14px;
  border-radius: 10px;
  height: 18px;
  margin: 0px 10px;
  display: inline-block;
}

.btn-small:hover {
  background-color: rgb(51, 43, 61);
}

.btn-big {
  display: inline-block;

  font-size: 32px;
  /* color: */
  background-color: rgb(46, 37, 58);
  /* color: #111; */
  padding: 20px 35px;
  border-radius: 10px;
  /* height: 108px; */
  margin: 30px;
}

.btn-big:hover {
  background-color: rgb(51, 43, 61);
}

.btn-big span {
  font-size: 16pt;
  color: #adadad;
}

.btn-sel {
  background-color: #5c4d79;
}

.header {
  width: 100%;
  text-align: right;
  padding: 20px;
  box-sizing: border-box;
  /* margin-bottom: 10px; */
}

.header a {
  margin: 5px;
}

.footer {
  padding: 10px;
}

.bg {
  animation: slide 20s ease-in-out infinite alternate;
  background-image: linear-gradient(60deg, #372246 50%, #22162b 50%);
  bottom: 0;
  left: -50%;
  opacity: 0.1;
  position: fixed;
  right: -50%;
  top: 0;
  z-index: -1;
}

.bg2 {
  animation-direction: reverse;
  animation-duration: 25s;
}

.bg3 {
  animation-duration: 10s;
}

@keyframes slide {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(25%);
  }
}
