/* Importando a fonte Inter do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');


body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #fdfdfd;
    font-family: 'Inter', sans-serif; 
    text-align: center;
}

#image{
    height: 30%;
    width:30%;
    background-image: url("../assets/404.png");
    background-repeat: no-repeat;
    background-position: center;
}

.text {
    font-size: 1.5em;
    color: #414246;
    display: inline;
    white-space: pre-line;
    position: relative;
}

.cursor {
    display: inline-block;
    width: 1.5px;
    height: 1em;
    background-color: #333;
    margin-left: 5px;
    transform: translateY(2.5px);
    animation: blink 0.8s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}