@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;
}

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

body {
  background-color: #0F001D;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  padding: 0 30px 30px;
}

main {
  text-align: center;
}

h1 {
  color: #C698EB;
  font-size: 30px;
  margin-top: 0;
}

.logo {
  width: 300px;
}

.color01 {
  color: #BEC5FF;
}

.main-content {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  margin-top: -30px;
  padding: 20px;
  border-radius: 100px;
  outline: 4px solid transparent;
  outline-offset: -4px;
  background: linear-gradient(to bottom,
      #661CA1, #34283E);
}

.main-content::after {
  content: "";
  background: #0F001D;
  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%;
}


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

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

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

@media screen and (max-width: 767px) {
  body {
    padding: 0 15px 15px;
    font-size: 16px;
  }

  .logo {
    width: 200px;
  }

  h1 {
    font-size: 22px;
  }

  .main-content {
    padding: 15px;
  }

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

  .divider {
    padding: 5px 0;
  }
}