
header{
    background: transparent;
}

section.page {
    background: rgb(64,74,83);
    background: linear-gradient(180deg, rgba(64,74,83,1) 0%, rgba(77,46,62,1) 53%, rgba(19,70,63,1) 100%);     width: 100%;
    /* background: linear-gradient(180deg, rgba(64,74,83,1) 0%, rgba(77,46,62,1) 100%, rgba(19,70,63,1) 100%); */
    height: calc(100vh - 100px);
    position: relative;
}

#logo_centered{
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    padding: 50px;
    display: flex;
    vertical-align: middle;
    align-content: center;
}

#logo_centered > img,
#logo_centered > object{
    max-width: 100%;
    width: 100%;
}

#nuenoLogoSmallSvg{
    display: none;
}

#spotify_button_centered,
#socialmedia_buttons_centered{
    width: calc(100% - 100px);
    padding: 50px;
    display: flex;
    justify-content: space-around;    
    align-items: center;
    position: absolute;
}

#spotify_button_centered{
    bottom: calc(100vh * 0.2);
}

#spotify_button{
    background: #1DB954;
    padding: 8px 18px;
    color: #ffffff;
    font-size: 19px;
    border-radius: 100px;
    cursor: pointer;
}

#socialmedia_buttons_centered{
    bottom: 50px;
    font-size: 25px;
    color: #fff;
}

#socialmedia_buttons{
    width: 400px;
    display: flex;
    justify-content: space-around;    
}


#listenMyMusicBlock{
    height: 100px;
    width: 100%;
    border-bottom: 1px solid #c29fb3;
}

h1.headline{
    background: #1a1a1a;
    background: #547475;
    background: #15443e;
    color: #fff;
    display: inline-block;
    padding: 6px 15px;
    border-radius: 3px;
    font-size: 33px;
}

#spotify_embed{
    float: right;
    margin: 23px 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: calc(100% - 390px);
}

#spotify_embed > a{
    display: inherit;
}

#side_text{
    font-family: 'Raleway', sans-serif;
    width: 40%;
    min-width: 400px;
    padding: 120px 0 50px 0;
    font-size: 23px;
}

#musicIsLikeBlock{
    font-family: 'Raleway', sans-serif;
    height: 100px;
    width: 100%;
    border-top: 1px solid #7b6675;
    background: #493543;
    color: #fff;
    line-height: 100px;
    font-size: 30px;
}


#albums{
    margin: 120px 0;
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: space-between;
    /* background: lime; */
    font-family: 'Raleway', sans-serif;
}

.album{
    /* background: red; */
    width: calc(50% - 40px);
    margin: 40px 10px;
    min-width: 300px;
    /* height: 300px; */
    background: #fff;
    border: solid 10px #fff;
    border-radius: 10px;
    box-sizing: border-box;
    position: relative;
}

.album > img{
    float: left;
    max-width: 180px;
    width: calc(100% - 200px);
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

.album > div{
    float: left;
    position: relative;
    z-index: 2;
    width: calc(100% - 200px);
}

.album > div > h1{
    /* background: yellow; */
    margin: 10px 20px;
}

.album > div > p{
    margin: 10px 20px;
}

.album[data-spotlight="true"]{
    position: relative;
    width: 100%;
    margin: 20px 10px 50px 10px;
    color: #fff;
}

.album[data-spotlight="true"] > *{
    z-index: 2;
    position: relative;
}

.album[data-spotlight="true"]:after{
    content: '';
    position: absolute;
    background: #493543;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    z-index: 1;
    border-radius: 15px;
}

#albumAnim_html{
    position: absolute;
    width: 100%;
    height: 100%;
    background: red;
    border: 1px solid red;
    padding: 20px;
    top: -20px;
    left: -20px;
    border-radius: 17px;
}

.albumAnim{
    position: absolute;
    fill: transparent;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    top: -20px;
    left: -20px;
    z-index: 1;
}

.albumAnim > rect{
    fill: transparent;
    width: 100%;
    height: 100%;
    stroke-width: 1px;
    stroke-dasharray: 400;
    stroke-dashoffset: 100;
    stroke:#fff;

    transition: stroke-dashoffset 1200ms ease;
}

.album:hover .albumAnim > rect{
    stroke-dashoffset: 800;
}


@media screen and (max-height: 1000px) {

    #spotify_button_centered{
        bottom: calc(100vh * 0.15);
    }

    #socialmedia_buttons_centered{
        bottom: 0px;
    }

}


@media screen and (max-height: 830px) {

    #spotify_button_centered{
        display: none;
    }

    #socialmedia_buttons_centered{
        bottom: -10px;
    }

    #letter1{
        display: none;
    }

}

@media screen and (max-width: 1000px) {

    .content{
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        margin: 0 0;
    }

    #listenMyMusicBlock > .content > h1.headline{
        display: none;
    }

    #listenMyMusicBlock > .content > #spotify_embed{
        width: 100%;
    }

    #side_text{
        margin-left: 50%;
        min-width: calc(50% - 30px);
        padding: 30px 30px 30px 0;
        text-align: justify;
        font-size: 20px;
        /* background: rgba(245,245,245,0.5); */
    }

    #albums{
        padding: 50px 20px;
        margin: 0;
    }
}

@media screen and (max-width: 700px) {

    #musicIsLikeBlock{
        font-size: 18px;
    }

    #side_text{
        margin-left: 40%;
        min-width: calc(60% - 30px);
    }

    .album{
        width: 100%;
    }
}

@media screen and (max-width: 500px) {

    #nuenoLogoSvg{
        display: none;
    }

    #nuenoLogoSmallSvg{
        display: block
    }

    #listenMyMusicBlock > .content > #spotify_embed{
        width: 100%;
    }

    #side_text{
        width: calc(100% - 20px);
        min-width: calc(100% - 20px);
        padding: 120px 10px 50px 10px;
        text-align: justify;
        background: rgba(245,245,245,0.5);
        font-size: 20px;
        margin: 0;
    }

    #musicIsLikeBlock{
        font-size: 15px;
    }

    #albums{
        padding: 50px 20px;
        margin: 0;
        justify-content: space-around;
    }

    .album > img{
        max-width: 100%;
        width: 100%;
        float: none;
    }

    .album > div{
        float: none;
        width: auto;
    }

    /* FIXME: just cheapisch kick out apple music logo here. proper solution needed. */
    #listenMyMusicBlock > .content > #spotify_embed > a{
        display: none;
    }
}

