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

body {
    background: #eee;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    font-size: 80px;
    font-weight: 150 !important;
}

.text-deco-none {
    text-decoration: none;
}

.text-color,
.typed-cursor {
    color: #3e0000;
}

.hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

/* --------------------------------------*/
p {
    color: white;
    padding: 10px;
    font-weight: 700;
    animation: p-frame 5s infinite;
}

@keyframes p-frame {
    0% {
        color: lightcoral;
    }

    20% {
        color: lightgreen;
    }

    40% {
        color: blueviolet;
    }

    60% {
        color: yellow;
    }

    80% {
        color: aqua;
    }

    100% {
        color: white;
    }
}