*{margin:0;padding:0;border:0;font-family:'arial';}

body{
    height: 100%;
}

html{
    height: 100%;
}

.home{
    width: 100%;
    height: 100%;
    background: url('../media/background-home.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.contact{
    width: 100%;
    height: 100%;
    background: url('../media/background-contact.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.artists{
    width: 100%;
    height: 100%;
    background: url('../media/background-artist.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.references{
    width: 100%;
    height: 100%;
    background: url('../media/background-references.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

nav{
    width: 100%;
    background: white;
    opacity: 0.8;
    float: left;
    padding-top: 10px;
    padding-bottom: 10px;
    position: fixed;
    top: 30px;
    z-index: 999;
}

.logo img{
    width: 100px;
}

nav .logo{
    float: left;
    margin-left: 8%;
}

nav ul{
    float: right;
    margin-top: 25px;
    margin-right: 8%;
}

nav ul li{
    display: inline;
    margin-left: 70px;
}

nav ul li a{
    color: black;
    text-decoration: none;
}

.social-icons{
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.social-icons img{
    width: 30px;
    margin-right: 8px;
}

.social-icons img:hover{
    cursor: pointer;
    width: 35px;
}

#content{
    color: white;
    width: 1000px;
    margin: 0 auto;
    padding-top: 150px;
    height: 80%;
}

.column-left{
    width: 40%;
    float: left;
}

.column-right{
    width: 40%;
    float: left;
    margin-left: 10%;
}

.contact input{
    width: calc(100% - 40px);
    padding: 10px 10px 10px 10px;
    font-size: 14px;
    color: black;
}

.contact textarea{
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    padding: 10px 10px 10px 10px;
    font-size: 12px;
    color: black;
    height: 150px;
    max-height: 150px;
}

.content-artists{
    position: relative;
}

.inner-artists{
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: 80%;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 20px;
}

.hamburger{
    display: none;
}

strong{
    text-decoration: underline;
}

@media (max-width: 1280px){
	#content{
        width: 90%;
        height: 80%;
    }

    .inner-artists{
        width: calc(100% - 40px);
    }
}

@media (max-width: 845px){
    .hamburger{
        display: block!important;
        position: absolute;
        right: 5%;
        top: 30px;
        z-index: 999;
        width: 30px;
    }
    nav{
        top: 0;
    }
    nav ul{
        float: left;
        width: 100%;
        display: none;
    }
	nav ul li{
        display: block;
        text-align: center;
        margin: 0;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    nav ul li a{
        text-align: center;
    }
    .logo{
        width: 100%;
        margin: 0!important;
    }
    .logo img{
        display: block;
        margin: 0 auto;
    }
}

@media (max-height: 741px){
	.inner-artists{
        height: 70%;
    }
}

@media (max-height: 610px){
	.inner-artists{
        height: 60%;
    }
}

@media (max-height: 510px){
	.inner-artists{
        height: 50%;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){
    .inner-artists{
        width: 80%!important;
        position: relative!important;
        margin-left: 10%;
        margin-top: 150px;
        height: 50%;
    }
}

#submit{
    width: calc(100% - 20px);
    background: green;
    color: white;
}

.copyright{
    color: white;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

@media(max-width: 450px){

    .social-icons{
        left: 5px;
        bottom: 5px;
    }
    .copyright{
        left: 5px;
        bottom: 45px;
        font-size: 11px;
    }
}