.navbar{
    position: fixed;
    opacity: 0;
    width: 100%;
    z-index: 50;
    animation: navbar-anim 1s .75s  forwards;
    font-weight: 600;
}
.square-pattern{
    background-color: #ededf369;
    background-image:  linear-gradient(#b1adad38 1px, transparent 1px), linear-gradient(to right, #d1d1d150 1px, #f9f9ff48 1px);
    background-size: 160px 160px;
}
@keyframes navbar-anim {
    0%{
        opacity: 0;
        /* filter: blur(4px); */
    }
    100%{
        opacity: 1;
        /* filter: blur(0); */

    }
}
#Image{
    opacity: 0;
    aspect-ratio: 16/9;
    width: 560px;
    height: 400px;
    margin-right: 56px;
    image-resolution: from-image 500dpi;
    border: 1px solid rgba(59, 59, 59, 0.333);
}
#Image.in-view{
    animation: images-anim 1s 0.2s forwards;
    
}
@media only screen and (max-width: 600px) {
    #Image {
      zoom: 50%;
    }
  }
@keyframes images-anim {
    0%{
        opacity: 0;
        rotate: 10deg;

        /* filter: blur(4px); */
    }
    100%{
        opacity: 1;
        rotate: 0deg;

        /* filter: blur(0); */

    }
}
.image-type-1{
    transform: rotateY(8deg) rotateZ(2deg) ;
    box-shadow: 32px 24px rgb(19, 169, 104);

}
.image-type-2{
    transform: rotateY(8deg) rotateZ(-2deg) ;
    box-shadow: -20px 16px rgb(19, 169, 104);

}

.discount{
    position: absolute;
    top: 12em;
    opacity: 0;
    animation: navbar-anim .7s .75s  forwards;
}   
.headline{
    transform: translateY(-40px);
    opacity: 0;
    animation: headline-anim 1s .45s ease-out forwards;
}

@keyframes headline-anim {
    0%{
        opacity: 0;
        transform: translateY(-40px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);

    }
}

.sub-headline{
    margin-top: 0px;
    opacity: 0;
    position: relative;
    animation: sub-headline-anim 1s .45s ease-out forwards;
}

#button.selected{
    color: oklch(59.6% 0.145 163.225);
}

#main-text svg{
    display: none;

}
#main-text h3{
    display: none;

}

@keyframes sub-headline-anim {
    0%{
        opacity: 0;
        transform: translateY(-20px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);

    }
}

