*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

.background-image{
    width: 100vw;
    height: 100vh;
    z-index: -5;
    position: fixed;
    background-image: url(".././img/nothing_lasts_cover_art_600x600.jpg");
    background-size: cover;
    filter: blur(30px);
}

.cover-image{
    width: 80vw;
}

.links-container{
    width: 80vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.links-container a{
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 1px solid black;
}

.links-container a img{
    max-width: 125px;
    max-height: 40px;
}

@media screen and (min-width: 1024px){
    .container{
        flex-direction: row;
        justify-content: center;
    }
    .links-container{
        max-width: 40vw;
    }
    .cover-image{
        max-width: 40vw;
    }
}