@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&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');


*,
*::after,
*::before{
    box-sizing: border-box;
}

*{
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

img{
    max-width: 100%;
}

html{
    font-family: "Poppins", serif;
    scroll-behavior: smooth;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

button:active, a:active{
    transform: scale(1.05);
    transition: 0.2s ease-in-out;
    position: relative;
    z-index: 9;
}

/* Fade in */
@keyframes fade-in{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

.fade-in-element{
    opacity: 0;
    animation: fade-in 1s ease-out forwards;
}

.fade-in-element:nth-child(1) {
    animation-delay: 0s;
}
.fade-in-element:nth-child(2) {
    animation-delay: 0.2s;
}
.fade-in-element:nth-child(3) {
    animation-delay: 0.4s;
}
.fade-in-element:nth-child(4) {
    animation-delay: 0.6s;
}