@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #000000;
    z-index: 4;
    font-family: "Poppins", serif;
}

body {
    height: 100vh;
    width: 100%;
    z-index: 1;

}

section {
    z-index: 1;
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FADADD;
    overflow: hidden;
}

body,
html {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.video-background video {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    height: 70%;
    width: 33%;
}

.image-box {
    height: 70%;
    width: 100%;
}

.actual-image {
    height: 80%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gif {
    height: 90%;
    width: 64%;
}

.text-one {
    height: 20%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yes-no {
    height: 30%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.yes {
    font-family: "Allura", serif;
    font-size: 7vh;
    font-weight: 550;
    height: 60%;
    width: 40%;
    border: none;
    cursor: pointer;
    background-color: #FB607F;
    scale: 1;
    z-index: 500;
    box-shadow: 4px 4px 10px black;
    transition: scale 0.1s ease-in;
}

.no {
    font-family: "Allura", serif;
    font-size: 7vh;
    font-weight: 550;
    height: 60%;
    width: 40%;
    border: none;
    cursor: pointer;
    background-color: #FB607F;
    scale: 1;
    box-shadow: 4px 4px 10px black;
    transition: scale 0.1s ease-in;
}

.yes:hover,
.no:hover {
    opacity: 0.95;
    scale: 0.95;
}

a {
    text-decoration: none;
    font-family: "Allura", serif;
    font-size: 7vh;
}

@media (min-width:200px) and (max-width:1025px) {
    .container {
        height: 80%;
        width: 98%;
    }

    .gif {
        width: 80%;
        height: auto;
        max-width: 420px;
        /* optional cap */
    }
}


.final-state {
    justify-content: flex-start;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.final-state .final-gif {
    transform: scale(1.6);
}

.final-state,
.final-state .container,
.final-state .image-box {
    height: auto !important;
    min-height: 1 !important;
}

.final-state .text-one {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.final-state #text {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2;
}

.final-gif {
    width: auto !important;
    height: auto !important;
    max-width: none !important;
}

.final-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fade-in {
    animation: fadeIn 1.2s ease forwards;
}

.final-state .actual-image,
.final-state img {
    margin-bottom: 3rem !important;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.note {
  display: none;

  /* MATCH button look */
  background: var(--yes-bg, #ff6b81); /* fallback if variable not defined */
  color: white;

  border-radius: 14px;
  padding: 1rem 1.2rem;

  /* FIX overflow / border issue */
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;

  margin: 0.8rem 0 0 0;

  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}
