:root {
  --red: #ff0000;
  --pink: #f14e95;
  --bg: #0a0a0a;
  --oren: #ff9000;
  --shadow: 0 2px 2px rgb(255, 255, 255);
}

body {
  font-size: 1.2rem;
  font-family: 'Work Sans', sans-serif;
  min-height: 4000px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/cover.png);
  background-size: auto;
  /* background-size: 400px; */
  /* background-color: var(--oren); */
  /* filter: blur(3px); */
  z-index: -1;
}

.hero {
  position: relative;
  min-height: 100vh;
}

/* .hero h2{
  font-size: 2rem;
} */

.hero h4 {
  font-family: 'Poetsen One', cursive;
  text-shadow: var(--shadow);
  color: black;
  
}

.hero h4 {
  font-size: 3rem;
}

.hero span {
  color: black;
  font-size: 2rem;
  text-shadow: var(--shadow);
  font-weight: bold;
}

.hero h3 {
  color: black;
  font-size: 2.5rem;
  text-shadow: var(--shadow);
  font-weight: bold;
}

.hero p {
  color: black;
  text-shadow: var(--shadow);
  font-size: 1.8rem;
  font-weight: bold;
}

.hero a {
  color: var(--pink);
  background-color: white;
  box-shadow: var(--shadow);
}

.hero a:hover {
  background-color: var(--pink);
  color: white;
}

.navbar {
  background-color: rgba(241, 122, 23, 1) !important;
  /* backdrop-filter: blur(2px); */
}

/* .navbar .offcanvas {
  height: 100vh;
} */

.navbar .navbar-brand,
.navbar .offcanvas-title {
  font-family: 'Sacramento', cursive;
  font-size: 2.5rem;
  font-weight: bold;
}

.navbar .nav-link {
  text-transform: uppercase;
}
.home {
  background-image: url(img/250.png);
  background-size: 400px;
  padding-top: 3rem;
  padding-bottom: 3;
}
.info {
  background-image: url(img/320.png);
  background-size: auto;
  padding-top: 5rem;
}
.roundown {
  background-image: url(img/250.png);
  background-size: 400px;
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.home h2{
  color: black;
  font-family: 'Poetsen One', cursive;
  font-size: 3rem;
}
.info h2,
.roundown h2,
.gallery h2 {
  color: black;
  font-family: 'Poetsen One', cursive;
  font-size: 4rem;
}

/* .info h2, */
/* .gallery h2, */
.rsvp h2 {
  color: white;
  font-family: 'Poetsen One', cursive;
  /* font-size: 2rem; */
  font-weight: bold;
}

.home p {
  font-size: 3rem;
  color: #666;
}

.home h4 {
  font-size: 1rem;
  /* font-family: 'Sacramento'; */
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: black;
}

.info,
.col 
{
  /* background-color: var(--bg); */
  /* background-image: url(img/4x4.png); */
  background-size: 400px;
  /* color: white; */
  /* padding-top: 10rem;
  padding-bottom: 8rem; */
}
.roundown .acara,
.info .alamat {
  color: black;
  font-size: 1.3rem;
}
.roundown h3,
.info h3{
  color: black;
  font-size: 1.5rem;
  font-weight: bold;
}

.info .description {
  color: black;
  font-size: 1rem;
  font-weight: 300;
}

.info .card {
  background-color: rgba(255, 255, 255, 1) !important;
  color: black !important;
  border: 2px solid #999;
}

.info .card-header {
  border-bottom: 1px solid #999;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.info .card-body {
  font-size: 1rem;
}

.info .card-footer {
  border-top: 1px solid #999;
  font-size: 0.9rem;
  font-weight: 300;
}

.gallery {
  background-image: url(img/cover.png);
  padding-top: 5rem;
  padding-bottom: 8rem;
}
.rsvp {
  /* background-image: url(img/cover.png); */
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.gallery span,
.gifts span {
  text-transform: uppercase;
  color: #666;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 1rem;
}


.gallery p,
.rsvp p,
.gifts p {
  font-size: 1rem;
  font-weight: 300;
}

/* .gallery {
  background-color: #f5f5f5;
} */

.rsvp {
  background-color: var(--bg);
}

.rsvp h2 {
  font-size: 3.5rem;
}

.rsvp p {
  color: white;
}

.rsvp form label {
  color: white;
}

.rsvp button {
  background-color: var(--pink);
  color: white;
  border: 1px solid var(--pink);
}

.rsvp button:hover {
  background-color: white;
  color: var(--pink);
  border: 1px solid white;
}

footer {
  padding: 3rem;
  background-color: var(--pink);
  color: white;
}

footer a {
  color: var(--bg);
  font-weight: bold;
  text-decoration: none;
}

footer a:hover {
  color: white;
}

footer li {
  list-style: none;
  display: inline;
  margin: 0.5rem;
}

.audio-icon-wrapper {
  width: 4rem;
  height: 12rem;
  font-size: 4rem;
  position: fixed;
  bottom: 2.5rem;
  right: 2rem;
  cursor: pointer;
  color: white;
  opacity: 0.5;
  mix-blend-mode: difference;
  animation: rotating 4s linear infinite;
  transform-origin: center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}

@keyframes rotating {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Media Query */
/* Extra large */
@media (max-width: 1200px) {
  .home .heart {
    transform: translateX(-50%) translateY(45px);
  }
}

/* laptop */
@media (max-width: 992px) {
  html {
    font-size: 75%;
  }

  .simply-countdown > .simply-section {
    padding: 50px;
  }
}

/* tablet */
@media (max-width: 768px) {
  html {
    font-size: 65%;
  }

  .simply-countdown > .simply-section {
    padding: 60px;
    margin: 3px;
  }

  .mynavbar .nav-link {
    font-size: 2rem;
    text-align: center;
  }

  .sticky-top {
    overflow: hidden;
  }
}

/* mobile phone */
@media (max-width: 576px) {
  html {
    font-size: 55%;
  }

  .simply-countdown > .simply-section {
    padding: 40px;
    margin: 3px;
    margin-left: auto;
    margin-right: auto;
  }
}
