/*--GENERAL---------------------------------------*/
html{
margin: 0px;
background-color: black;
font-family: 'Rubik Mono One', sans-serif;
min-width: fit-content;
height: 3000px;
}

body{
  margin: 0px;
}


.navItem{
color: white;
margin-left: 25px;
margin-right: 25px;
text-decoration: none;
}

.navItem:hover{
  cursor: pointer;
}

#header{
  height: 150px;
  margin-top: 0px;
  width: 100%;
  min-width: 1200px;
  background-color: black;
  display: flex;
  flex-direction: row;
  vertical-align: middle;
  align-items: center;
  position: fixed;
}

#navbar{
width: 2000px ;
min-width: 1000px;
margin-right: 10%;
display: flex;
flex-direction: row;
justify-content: center;
}

/*--HOME---------------------------------------*/

#welcomeSection{
  background-image: url(./graphics/welcomeBackground.png);
  background-size: cover;
  background-position: center;
  height: 3900px;
  width: 100%;
  min-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#homeEmailInput{
  height: 30px;
  width: 250px;
  border: none;
  margin-right: 0px;
  font-family: 'Rubik Mono One', sans-serif;
}

#homeEmailSubmitButton{
  height: 30px;
  margin-left: 0px;
  border: none;
 background-color: grey;
 font-family: 'Rubik Mono One', sans-serif;
}


#homeSocialSection{
  height: 250px;
  min-width: 1200px;
  background-color: rgb(253, 253, 253);
  display: flex;
  flex-direction: column;
  align-items: center;
}



#homeYoutubeVideos{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  min-width: 1200px;
}

#homeFiller{
  height: 1000px;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}

/*--ARTISTS---------------------------------------*/


#artistsContents{
 height: 2000px;
 background-color: white;
 display: flex;
 flex-direction: column;
}

.artistsRow{
display: flex;
flex-direction: row;
justify-content: center;
}

.artistsArtist{
  display: flex;
  flex-direction: column;
}

/*--RELEASES---------------------------------------*/

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

.releasediv{
display: flex;
flex-direction: row;
background-color: rgb(253, 253, 253);
height: 400px;
width: 100%;
min-width: 1200px;
align-items: center;
}

.release-div-description{
  display: flex;
  flex-direction: column;
}

.release-description-icons{
  display: flex;
  flex-direction: row;
  align-items: center;
}

/*--CONTACT US---------------------------------------*/

#contactSection{
  background-size: cover;
  background-position: center;
  height: 900px;
  width: 100%;
  min-width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  background-color: rgb(253, 253, 253);
  color: black;
}

#contactSection h2{
  margin-left: 50px;
}
#contactSection h6{
  margin-left: 50px;
}

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

.contactSectionEmail{
  margin-bottom: 10px;
}

#contactInfo{
 display: flex;
 flex-direction: column; 
 align-items: center;
 width: 400px;
}

#contactGeneral{
  display: flex;
  flex-direction: column;
  align-items: center;
}


#joinOurTeam:hover{
cursor: pointer;
}


.forminputlabel{
  color: white;
  margin-top: 20px;
}

.forminput{
  width: 400px;
}



