body {
    margin: 0;
    transition: filter 0.5s ease;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.bg-body {
    position: fixed;
    width: calc(100% + 50px);
    left: -25px;
    top: -25px;
    height: calc(100% + 50px);
    z-index: -1;
    background-size: cover;
    /*filter: blur(20px);*/
    /* transform: scale(1.2); */
    background-position: center;
    background-image: url('/blurred.jpg');
}

img.cover {
    width: 100%;
    max-width: 400px;
    margin: auto;
    display: block;
    border-radius: 5px;
    box-shadow: rgb(255 255 255 / 8%) 0px 0px 30px;
}

.flex.wrapper {
    margin: auto;
    max-width: 1200px;
    padding: 32px;
    align-items: center;
    height: calc(100vh - 64px);
}

.flex-item {
    flex: 1;
}

.text-container {
    margin: 16px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-size: 1.2em;
    max-width: 400px;
}

img.logo {
    width: 100%;
    margin-bottom: 16px;
}

small {
    font-size: 0.7em;
    line-height: 1.4em;
    display: block;
}

.spotify-button {
    background-color: #1ed760;
    background-image: none;
    font-size: 14px;
    padding: 14px 7px;
    padding-left: 17px;
    margin: 32px 0 0 0;
    display: block;
    border-radius: 5px;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.apple-button {
    background-color: #fff;
    color: #fa233b!important;
    background-image: none;
    font-size: 14px;
    padding: 14px 7px;
    padding-left: 17px;
    margin: 0 0 16px 0;
    display: block;
    border-radius: 5px;
    position: relative;
    color: inherit;
    text-decoration: none;
}
.music_service_icon {
    position: absolute;
    left: 16px;
    font-size: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.darken{
    filter: brightness(0.3);
    overflow: hidden;
}

.pop-up {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    line-height: 100vh;
    text-align: center;
    background: rgba(0,0,0,0.8);
    z-index: 200;
}

.pop-up button {
    background: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 3000px;
    font-size: 1.2em;
    color: #241c13;
    text-transform: uppercase;
    /* font-weight: bold; */
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    outline: none;
}

.pop-up img {
    max-width: 100px;
}

@media (max-width: 740px){

    .pop-up {
        display: block;
    }

    .flex{
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .flex-item:last-child{
        flex-grow: 2;
    }

    img.logo{
        display: none !important;
    }

    .text-container {
        margin: 16px auto;
        font-size: 0.95em;
    }
}