@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

:root {
    font-family: "Michroma", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html, body {
    height: 100%;
    margin: 0;
}

h1 {
    font-weight: 600;
}

@keyframes entertext {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.main {
    margin: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: entertext 1s ease-in-out forwards;
}