﻿.hero-container {
    height: 100vh;
    max-height: 100vh;
}

.hero-container-cover {
    height: 100vh;
    max-height: 100vh;
}


@keyframes blink-underline {
    0% {
        text-decoration: underline;
    }

    50% {
        text-decoration: none;
    }

    100% {
        text-decoration: underline;
    }
}

.blink-underline {
    animation: blink-underline 1.5s infinite;
}
