@font-face {
    font-family: "dindong";
    src: url("../assets/DINdong.ttf");
}
.dindong {
    font-family: "dindong";
}
body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    margin: 0;
}
h1 {
    margin-bottom: 100px;
    color: #333;
    font-weight: 400;
    font-size: 15px;
}
.text {
    position: absolute;
    font-family: dindong;
    font-size: 16px;
    /* align-self: center; */
    animation: fadeOut 5s ease-in forwards;
}

.ellipse {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-block;
    margin: 10px;
}

.polygon {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid silver;
    display: inline-block;
    margin: 10px;
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    70% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.particle {
    position: absolute;
    pointer-events: none;
    animation: particle 1s ease-out;
}
.trail {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    pointer-events: none;
    animation: fade 1s ease-out;
}

@keyframes particle {
    to {
        transform: translate(var(--tx), var(--ty));
        opacity: 0;
    }
}
@keyframes fade {
    to {
        opacity: 0;
    }
}