body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: #26619d;

    display: flex;
}

:link {
    color: #0067ee;
}

.info-wrapper {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.album-background {
    position: absolute;
    z-index: -1;

    max-height: 100%;
    max-width: 100%;
    filter: blur(15px);
}

.album {
    max-width: 65vw;
    max-height: 50vh;
    box-shadow: 0px 0px 5px 0px #26619d;

    margin-bottom: 50px;
}

.info {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2em;
    font-weight: bolder;
    text-align: center;
    color: #d0cecf;
    width: 100%;

    text-shadow: 1px 1px 2px black;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(214, 214, 214, 0.425);
    color: white;
    text-align: center;
    padding: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    font-size: 1.5em;

    display: flex;
    align-items: center;
    justify-content: space-around;
}