*{
    margin: 0;
    padding: 0;
}
body,html{
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-image: url("images/background.jpg");
    background-position: 0fr;
}

.container{
    height: 100%;
    background-image: url("images/background.jpg");
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.navbar{
    min-width: 60%;
    padding: 20px;
    display: flex;
    align-items: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 20px
}
.logo{
    width: 8vw;
}
.socialmedia{
    margin-left: 3rem;
    display: flex;
    align-items: center;
}
.socialmedia img{
    padding: 0;
}
.socials{
    padding: 1rem;
    width: 40px;
}

.merchandise{
    background-color: #031926;
    border-radius: 20px;
    padding: 10px;
}

.bookings{
    background-color: crimson;
    border-radius: 20px;    
    padding: 10px;
}

.content{
    width: 70%;
    color: white;
    text-align: center;
}
.content  h2{
    font-family: 'Modak', cursive;
    font-size: 2.5rem;
    -webkit-text-stroke: 2px black
}


/* LATEST RELEASES */
.latestreleases{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 10vh;
}

.release{
    background-color: #1f1c1c;
    border-radius: 15px;
}

.sociallinks > a{
    margin: 0.5rem;
}
.sociallinks{
    display: flex;
    justify-content: space-evenly;
}


.tekstmark{
    /* height: 400px; */
    background-color: #2ecc71;
}
.photomark{
    float: right;
}






/* FOOTER */
footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #211F25;
    color: white;
}


footer button{
    cursor: pointer;
    background-color: rgb(31, 27, 27);
    border: 0px;
    padding: 0.5rem;
    border-radius: 20%;
}

.subscribe input{
    border-radius: 20px;
    border: 0px;
    padding: 8px;
}

button:hover{
    background-color: #2ecc71;
}

footer > p, a{
    display: inline-block;
    margin: 20px;
    text-decoration: none;
    color: white;
}   

.socialbar{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.merchandbookings{
    display: flex;
    justify-content: space-evenly;
}

/* custom layout for mobile buttons */
.merchandbookings button{
    background-color: #F4F4F4;
    color:black;
    width: 153px;
    height: 31px;
    border-radius: 10px;
    border: 0;
    font-family: 'Oswald', sans-serif;

}

.latestreleasemobile{
    height: 100%;
    width: 100%;
    text-align: center;
}

.latestreleasemobile img{
    margin-top: 20vh;
    width: 25vh;
    height: 25vh;
    animation: latestreleasetransformanimation 1s;
}

.playnow button{
    border: 0;
    background-color: #ECF0F1;
    padding: 5px;
    border-radius: 10px;
}


/* ABOUT ME SECTION */

.aboutme{
    /* this marginbotton is to get no overlap with the footer which is 67px hight */
    margin-bottom: 59px;
    padding: 1rem 15vh;
    background-color: crimson;
    display: flex;
    align-items: center;
}


.markimage > img{
    margin: 20px;
    width: 20vw;
    border-radius: 50%;
}
.marktest > h1{
    color: #F1FAEE
}


/* show only 2 newest releases if the window on pc is small */
@media screen and (max-width: 1320px) {
    .latestreleases > .release:nth-child(3){
        display: none;
        visibility: hidden;
    }
}


/* COMPUTER */
@media screen and (min-width: 993px){
    .latestreleasemobile{
        display: none;
        visibility: hidden;
    }
    .socialbarmobile{
        display: none;
        visibility: hidden;
    }
}
/* On screens that are 992px wide or less, go from four columns to two columns */
/* TABLETS */
@media screen and (max-width: 992px) {
    .logo{
        width: 168px;
        margin-top: 57px;
    }
    .navbar{
        padding: 0;
    }

    .socialmedia a{
        visibility: hidden;
        display: none;
    }
    .socialmedia{
        flex-direction: column;
        flex: 100%;
        margin: 0;
    }

    .socialbarmobile{
        position: sticky;
        bottom: 0;
        left: 0;
        margin-top: 20px;
    }

    .latestreleasemobile img{
        width: 35vh;
        height: 35vh;
    }

    .content{
        width: 100%;
    }

    footer{
        position: inherit;
        background-color: #211F25;
        flex-direction: column;
    }

    .content .latestreleases{
        visibility: hidden;
        display: none;
    }

    .aboutme{
        flex-direction: column-reverse;
        padding: 1rem;
    }
  }
  
  /* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
  /* SMARTPHONES */
  @media screen and (max-width: 600px) {
    .logo{
        width: 90px;
    }

    /* Temporary: remove the content */
    .content .latestreleases{
        visibility: hidden;
        display: none;
    }

    .latestreleasemobile img{
        width: 25vh;
        height: 25vh;
    }


    /* remove the footer */
    footer{
        visibility: hidden;
        display: none;
    }
    .aboutme{
        margin-bottom: 0;
    }
    

    .merchandbookings > button{
        cursor: pointer;
    }
    
    .logo{
        width: 124px;
        margin-top: 57px;
    }

    .socialmedia{
        flex-direction: column;
        flex: 100%;
        margin: 0;
    }

    .markimage > img{
        margin: 20px;
        width: 50vw;
        border-radius: 50%;
    }
  }





@keyframes latestreleasetransformanimation{
    from{
        transform: scaleX(-1);
    }to{
        transform: scale(1);
    }
}