@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap";

:root {
  --white: #fcf7ec;
  --orange: #ff6d00;
  --main-bg: #fcf7ec;
  --black: #000;
  --light-grey: #f2f2f2;
  --font-poppins: Poppins, sans-serif;
  --font-montserrat: Montserrat, sans-serif;
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  font-family: var(--font-poppins);
  text-align: center;
  color: #05271c;
  overflow: hidden;
}

a {
  text-decoration: none !important;
  color: inherit !important;
}

.index {
  margin: 0;
  overflow: hidden;
}

.index {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

#video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.index video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index video source {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#video-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 39, 28, 0.7);
  z-index: 1;
}

#video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 1000;
}

.index h1 {
  font-size: 6rem;
  margin-top: 10rem;
}

.index .logo {
  width: 30rem;
  margin-top: 10rem;
}

#Enter-btn a {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: #fcf7fc;
  color: #05271c !important;
  font-size: 2.2rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 2px solid #fff;
  border-radius: 5rem;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  -ms-border-radius: 5rem;
  -o-border-radius: 5rem;
}

#Enter-btn :hover {
  background-color: #05271c;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

#Enter-btn a {
  text-decoration: none;
  color: #05271c;
}

#Enter-btn:hover a,
#Enter-btn a:hover {
  color: #fcf7fc !important;
}

.wrapper {
  position: fixed;
  bottom: 5rem;
  right: -200%;
  min-width: 30%;
  width: 40rem;
  background: #fff;
  padding: 1.5rem 2.5rem 2.2rem;
  transition: right 0.3s ease;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
}

.wrapper.show {
  right: 3rem;
}

.wrapper header {
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
}

header i {
  color: #05271c;
  font-size: 3.2rem;
}

header h2 {
  color: #05271c;
  font-weight: 500;
  font-size: 3.2rem;
}

.wrapper .data {
  margin-top: 1.6rem;
}

.wrapper .data p {
  color: #333;
  font-size: 1.6rem;
  text-align: left;
}

.wrapper .data ul {
  color: #333;
  font-size: 1.6rem;
  text-align: left;
  list-style-type: circle;
  padding-left: 2rem;
  margin: 2rem 0;
}

.wrapper .buttons {
  margin-top: 1.6rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.buttons .button {
  border: none;
  color: #fff;
  padding: 0.8rem 0;
  background: #05271c;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -ms-border-radius: 0.4rem;
  -o-border-radius: 0.4rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.buttons #acceptBtn,
#declineBtn {
  border: 2px solid #05271c;
  background-color: #fff;
  color: #05271c;
  font-weight: 500;
  font-size: 2rem;
}

.buttons #acceptBtn:hover,
#declineBtn:hover {
  background-color: #05271c;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  html {
    font-size: 8px;
  }
}

@media only screen and (max-width: 520px) {
  html {
    font-size: 7px;
  }

  #content {
    height: 80vh;
  }

  #text-content {
    padding-top: 10rem
  }

  .wrapper {
    position: fixed;
    bottom: -100rem;
    right: auto;
    left: auto;
    min-width: 30%;
    width: 90%;
    background: #fff;
    padding: 1.5rem 2.5rem 2.2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 0.8rem;
    -webkit-border-radius: 0.8rem;
    -moz-border-radius: 0.8rem;
    -ms-border-radius: 0.8rem;
    -o-border-radius: 0.8rem;
    transition: bottom 0.4s ease;
    -webkit-transition: bottom 0.4s ease;
    -moz-transition: bottom 0.4s ease;
    -ms-transition: bottom 0.4s ease;
    -o-transition: bottom 0.4s ease;
  }

  .wrapper.show {
    bottom: 5rem;
  }
}