body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.intro{
    display: flex;
    height: 100vh;
    /* 0.5 is the opacity with rgba - essentially this makes the image dimmer  */
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url("blue-sky-clear-sky-cold-fog.jpg");
    background-size: cover;
    color: white;
}

.typing {
    position: relative;
    margin-left: 10px; /* add space on the still text and changing text */
}

.typing::after{
    content: "";
    position: relative;
    right: -5px;
    width: 1px;
    height: 4%;
    border-right: 2px solid white; /* the typing line */
    animation: blink 0.7s infinite ease;
    
}

@keyframes blink {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}