@import "tailwindcss";

/* General */
html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter Tight", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.4;
}

img {
    max-width: 100% !important;
    height: auto;
    width: auto;
}

/* Typography */
.inter-bold {
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.inter-medium {
    font-family: "Inter Tight", sans-serif;
    font-weight: 500 !important;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter Tight", sans-serif;
    font-weight: 700 !important;
    font-style: normal;
}

[data-scroll] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

[data-scroll="in"] {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

[data-scroll="out"] {
    opacity: 0;
    transform: translateY(50px);
    transition-delay: 0.25s;
}

[data-scroll="in"] .char {
    animation: slide-down 1s forwards cubic-bezier(0,1.18,.82,1.02);
    animation-delay: calc(.5s + (.1s * var(--char-index)));
    opacity: 0;
}

@keyframes slide-down {
    from {
        transform: translateY(125%);
        opacity: 0;
    }
    to {
        transform: translateY(0%);
        opacity: 1;
    }
}


/* Layout */

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 767px) {
}
