body{
    margin: 0;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold';
    font-size: 7vw;
    overflow: hidden;
}

p{
    margin-top: 0;
    margin-bottom: 0;
}

.content{
    display: flex;
    overflow: hidden;
}

#playbutton{
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
}

#playbutton:hover{
    filter: invert(100%);
    transition: all 0.3s ease;
}

#albumCover{
    height: 100vh;
    /* animation: flash 2s linear infinite; */
    
}

.movin-text{
    background-color: white;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    max-height: 50%;
    min-height: 50%;
    z-index: -10;
    display: flex;
    align-items: center; 
    /* border-right: 1px solid black; */
}

.movin-text p{
    margin: none;
    /* border: 1px solid red; */
}

button{
    background-color: white;
    border-radius: 0;
    border-left: none;
    border-bottom: none;
    border-right: none;
    font-family: "Space Mono";
    font-size: 20vh;
    width: 100%;
    height: 50%;
    transition: all 0.3s ease;
}

button:hover{
    text-decoration: underline;
    filter: invert(100%);
    transition: all 0.3s ease;
}

@keyframes marquee {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@keyframes flash{
    0% {filter: hue-rotate(360deg);}
    100% {filter: hue-rotate(0deg);}
}