﻿.mySpace {
    padding-top: 10px;
}

    .mySpace p {
        line-height: 0.14;
    }

.newBlueUnder {
    border-top: 3px dashed blue;
    border-bottom: 3px dashed blue;
    padding-bottom: 5px;
    padding-top: 5px;
    align-content: space-between;
    display: flex;
    width: 100%;
}

.textColorChange {
    color: blue;
    font-weight: bold;
    animation: changeTxtColor 4s infinite;
}

@keyframes changeTxtColor {
    0% {
        color: blue;
    }

    20% {
        color: red;
    }

    40% {
        color: darkgreen;
    }

    60% {
        color: maroon;
    }

    80% {
        color: blueviolet;
    }

    100% {
        color: blue;
    }
}

.blinking-image {
    transform: rotate(-25deg);
    transform-origin: top left;
    animation: blinkImg 0.75s infinite; /* For a fade-in/fade-out blink */
    margin-top: 35px;
    /* or */
    /* animation: blink-steps 1s steps(1, end) infinite; */ /* For a sudden on/off blink */
}



@keyframes blinkImg {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
