
@media only screen and (max-width: 767px) {
    /* CSS styles for mobile phones */

    #release {
        display: block;

        width: 240px;
        height: 240px;

        margin: 0 auto;
        margin-top: 180px;
    }

    .social {
        height: 66px;
        width: 66px;
    }

    #container {
        min-height: 80vh;
    }
}

@media only screen and (min-width: 768px) {
    /* CSS styles for tablets */

    #release {
        display: block;

        width: 300px;
        height: 300px;

        margin: 0 auto;
        margin-top: 300px;
    }

    .social {
        height: 80px;
        width: 80px;
    }

    #container {
        min-height: 100vh;
    }
}

@media only screen and (min-width: 1025px) {
    /* CSS styles for larger devices like desktops and laptops */

    main {
        background-position: center;
    }
        
    #release {
        position: absolute;

        bottom: -50px;
        right: 2%;

        width: 300px;
        height: 300px;
    }

    .social {
        height: 100px;
        width: 100px;
    }
}

@media only screen and (min-width: 1440px) {
    /* CSS styles for wide screens */

    #release {
        position: absolute;

        bottom: -50px;
        right: 10%;

        width: 300px;
        height: 300px;
    }
}

body {
    --black: #050403ff;
    --walnut-brown: #5A5045ff;
    --bone: #DCD4C7ff;
    --smoky-black: #17140Fff;
    
    background-color: var(--black);
    color: var(--bone);

    margin: 0;
    padding: 0;
}

h1 span {
    display: none;
}

img {
    display: block;
    margin: 0 auto;
}

header, footer {
    flex: 0 0 auto;
}

footer {
    margin: 20px auto;
    text-align: center;
}

main {
    flex: 1;
    
    background-image: url('img/band.jpg');
    background-size: contain;
    background-repeat: no-repeat;

    width: 100%;
    height: 600px;

    margin: 0 auto;

    position: relative;
}

#container {
    display: flex;
    flex-direction: column;
}

#release {
    background-image: url('img/release-small.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    box-shadow: 4px 4px 10px 0 rgb(62, 0, 0);
}

.img-logo {
    width: 100%;
    max-width: 600px;

    filter: invert(1);
}

.social {
    display: inline-block;

    background-repeat: no-repeat;
    background-size: cover;

    font-size: 3rem;
    color: #ccc;
}

.social-facebook  { background-image: url('./img/social-facebook.png') ; }
.social-instagram { background-image: url('./img/social-instagram.png'); }
.social-spotify   { background-image: url('./img/social-spotify.png')  ; }
.social-youtube   { background-image: url('./img/social-youtube.png')  ; }
