@import"css2-1.css";
@import"css2-2.css";
body {
    margin: 0;
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fadeinout {
    animation: fadeinout 1.1s infinite
}

@keyframes fadeinout {
    0% {
        opacity: 0
    }
    50% {
        opacity: .9
    }
    to {
        opacity: 0
    }
}