* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

html {
    color: white;
    background-color: black;
    text-align: center;
}

img {
    width: 100%;
    max-width: 256px;
    height: auto;
    animation: heartbeat 1s infinite;
}

h1 {
    font-weight: 900;
    color: #FFB401;
}

h3 {
    color: #E00051;
    font-weight: 600;
}

h2 {
    background-color: white;
    color: black;
    font-style: italic;
    text-align: center;
}

h4 {
    font-weight: 500;
    color: aliceblue;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 7s steps(40) infinite;
}

h4::after {
    content: '|';
    animation: blink 1s infinite;
}

p {
    color: #737373;
    width: 80%;
}

main {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

a {
    background-color: #E00051;
    color: aliceblue;
    font-style: italic;
    font-weight: bolder;
    text-decoration: none;
    display: block;
    padding: 10;
}

@keyframes heartbeat {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }
}


@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}