@font-face {
  font-family: 'Gilroy Regular';
  src: url('../fonts/gilroy/Gilroy-Regular.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy SemiBold';
  src: url('../fonts/gilroy/Gilroy-SemiBold.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy Bold';
  src: url('../fonts/gilroy/Gilroy-Bold.ttf') format('truetype');
  font-display: swap;
}
/* @font-face {
  font-family: 'Gilroy Medium';
  src: url('../fonts/gilroy/Gilroy-Medium.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy Italic';
  src: url('../fonts/gilroy/Gilroy-Italic.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy Light';
  src: url('../fonts/gilroy/Gilroy-Light.ttf') format('truetype');
  font-display: swap;
} */

:root {
  --gilroy-regular: 'Gilroy Regular'; /* 400 */
  --gilroy-semibold: 'Gilroy SemiBold'; /* 600 */
  --gilroy-bold: 'Gilroy Bold'; /* 700 */
  --white: #FFFFFF;
  --black: #000000;
  --main-color: #FB2659;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--gilroy-regular);
  font-style: normal;
  font-weight: normal;
  color: var(--white);
  background-color: var(--black);
  height: 100vh;
  max-height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ctr-fluid {
  width: 100%;
}
.ctr {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding-left: 16px;
  padding-right: 16px;
}
.pixel-heart {
  -webkit-mask: url("../images/pixel-heart.svg");
  mask: url("../images/pixel-heart.svg") no-repeat center;
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  background-color: #FB2659;
}

.info-ctr a {
  color: var(--main-color)
}

/* header */
.ctr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
  padding-bottom: 36px;
}
.header-logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-family: var(--gilroy-semibold);
}
.header-btn {
  padding: 10px 16px;
  border-radius: 16px;
  background-color: #FB2659;
  font-size: 24px;
  font-family: var(--gilroy-bold);
  text-decoration: none;
  color: var(--white);
}
/* header */

/* body */
.ctr-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ctr-body video {
  width: 550px;
  height: 550px;
  margin-top: -50px;
}
.body-main-text {
  margin-top: -58px;
  max-width: 557px;
  font-size: 40px;
  font-family: var(--gilroy-bold);
}
.body-secondary-text {
  max-width: 557px;
  font-size: 17px;
  margin-top: 12px;
}
/* body */

/* footer */
.ctr-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
  padding-bottom: 36px;
}
.footer-copy {
  color: #BDBDBD;
  font-size: 20px;
  line-height: 18px;
}
.footer-nav {
  display: flex;
  align-items: center;
  margin-left: 24px;
}
.footer-nav a {
  color: var(--white);
  font-size: 20px;
  line-height: 18px;
  text-decoration: none;
}
.footer-nav a + a {
  margin-left: 25px;
}
/* footer */

@media only screen and (max-width: 890px)  {
  .ctr-body video {
    width: 500px;
    height: 500px;
    margin-top: -30px;
  }
}
@media only screen and (max-width: 750px)  {
  html, body {
    height: 100%;
    max-height: unset;
    min-height: 100%;
  }
  .ctr-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 36px;
    padding-bottom: 36px;
    text-align: center;
  }
  .footer-nav {
    display: flex;
    align-items: center;
    margin-left: 0px;
    margin-top: 12px;
  }
}
@media only screen and (max-width: 582px)  {
  .ctr-body video {
    width: 290px;
    height: 290px;
    margin-top: 12px;
  }
  .body-main-text {
    margin-top: -10px;
  }
}