#header {
    color:#fff;

    
    background: linear-gradient(270deg, #73f21e, #3e9b00, #334527);
    background-size: 600% 600%;

    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:90% 0%}
    50%{background-position:11% 100%}
    100%{background-position:90% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:90% 0%}
    50%{background-position:11% 100%}
    100%{background-position:90% 0%}
}
@keyframes AnimationName {
    0%{background-position:90% 0%}
    50%{background-position:11% 100%}
    100%{background-position:90% 0%}
}


#header h1 {
    font-size: 4em;
    text-align: center;
    text-transform: uppercase;
    bottom:-100px;
    position:relative;
}

.card img {
    height:250px;
    object-fit: cover;
}

.card {
    min-width: 100% !important;
}

.home-page-card .card:hover {
    cursor: pointer;
    border-color: blue;
}