@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFPRODISPLAYREGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFPRODISPLAYMEDIUM.OTF") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFPRODISPLAYBOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Arial Rounded MT Bold";
  src: url("../fonts/arialroundedmtbold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  font-family: "SF Pro Display", sans-serif;
  background-color: #160600;
}

html,
body {
  overscroll-behavior-y: none;
}

body {
  /* background-color: #1F0014; */
  background: linear-gradient(
    to bottom,
    #1F0014 0%,
    #10000C 29%,
    #090010 100%
);
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

main {
  text-align: center;
  padding: 0 30px 30px;
}

h1 {
   background: linear-gradient(to bottom, #feffaa 0, #faffdb 29%, #ffbb43 80%, #fede5e 100%);
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  font-size: 30px;
  margin: 0 0 5px 0;
}

.logo {
  width: 220px;
}

.color01 {
  color: #FFE5B7;
}

.main-content {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 20px;
  border-radius: 100px;
  outline: 4px solid transparent;
  outline-offset: -4px;
  background: linear-gradient(to bottom,
      #B9A54C 0%, #a28030 45%, #594e20 100%);
}

.main-content::after {
  content: "";
  background: linear-gradient(
    to bottom,
    #10000C 50%,
    #090010 100%
);
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 100px;
  top: 1px;
  left: 1px;
}

.main-content-inner {
  position: relative;
  z-index: 100;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}

.divider img {
  max-width: 70%;
}

.footer {
  background: #280019;
  padding: 20px 10px;
  margin-top: 50px;
}
.footer-content {
    max-width: 935px;
    margin: 0 auto;
    color: #FFE5B7;
    text-align: center;
}

.footer a {
  color: #fff;
  text-underline-offset: 3px;
}
.footer p {
  margin: 0;
  line-height: 1.4;
}


@media screen and (max-width: 1024px) {
  .logo {
    width: 200px;
  }

  .main-content,
  .main-content::after {
    border-radius: 80px;
  }

  .divider img {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  main {
    padding: 0 15px 15px;
    font-size: 15px;
  }
   .logo {
    width: 170px;
  }


  h1 {
    font-size: 22px;
  }

  .main-content {
    padding: 15px;
  }

  .main-content,
  .main-content::after {
    border-radius: 40px;
  }

  .divider {
    padding: 5px 0;
  }
    .footer {
    margin-top: 30px;
  }
  .footer p {
    font-size: 13px;
  }
}