/* Show it is fixed to the top */
body {
    min-height: 75rem;
    padding-top: 3.5rem;
}

@keyframes fadein {
    0%   {opacity: 0;}
    100% {opacity: 1;}
}

section h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: calc( 30px + 6vw);
}

.header p, .header h1 {
    animation: fadein 1s linear backwards;
}

.album .card{
    animation: fadein 1s linear 1s backwards;
}