* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto Mono", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
    margin: auto;
    padding: 16px;
    /* background-color: #f4f4f4; */
    max-width: 800px;
    /* margin-left: auto;
    margin-right: auto; */
}

ul{
    list-style-type: none;
}
a {
    color: inherit;
    text-underline-offset: 4px;
    transition: color 0.3s ease-in-out;
}
a:hover {
    animation: colorChange 3s infinite;
}

/* Define keyframes for the color transitions */
@keyframes colorChange {
    0% { color: purple; }
    25% { color: green; }
    50% { color: blue; }
    75% { color: orange; }
    100% { color: purple; }
}


@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

main {
    animation: fadeIn 1s ease-out forwards;
}
