@import url("https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700");
* {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  box-sizing: border-box;
}

a {
  color: black !important;
  text-decoration: none !important;
}

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

h1 {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  padding: 20px;
}

#cover {
  position: fixed;
  height: 100vh;
  width: 100vw;
  transition: opacity 1s ease;
  background-color: #148f46;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#login,
#loading {
  background-color: #ffffffff;
  font-size: 20px;
  padding: 30px;
  border-radius: 500px;
}

#login {
  cursor: pointer;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease;
}

#login:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}

#person {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

#profilePic {
  height: 100px;
  width: 100px;
  background-image: url("https://www.law.berkeley.edu/wp-content/uploads/2015/04/Blank-profile.png");
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

#name {
  font-size: 30px;
  padding-left: 30px;
}

.label {
  font-size: 16px;
  margin-top: 50px;
}

#playlists {
  position: relative;
  padding: 0 50px;
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.playlist {
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 400px;
  margin: 0 10px;
}

.playlist:hover {
  background-color: #f4f4f4;
}

.playlist > * {
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.playlistCover {
  min-height: 100px !important;
  min-width: 100px !important;
  background-size: cover;
  background-position: center;
  /* background-color: #148F46; */
  background-color: #ddd;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}
/*
.playlist:last-of-type {
  border-bottom: none;
} */

.playlistName {
  font-size: 20px;
  padding-left: 30px;
}

.selected > * {
  opacity: 1;
}

#generate {
  font-size: 20px;
  color: white;
  background-color: #148f46;
  line-height: 30px;
  padding: 12px 30px;
  border-radius: 27px;
  margin-top: 50px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

#generate:hover {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.5);
}

#output {
  width: 100vw;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}

#samplePic,
#mosaic {
  display: block;
}

input {
  margin: 20px 0;
}

#numTiles {
  font-size: 20px;
}

#slider {
}

#imgHolder {
}

#imgHolder img {
  display: block;
  width: 100%;
  height: auto;
}

#canvas {
  height: 300px;
  width: 300px;
  display: none;
}

#mosaic {
  /* position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start; */
}

.pixel {
  display: block;
}

#download {
  font-size: 22;
  padding: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10000px;
  margin: 50px 0 100px 0;
  transition: box-shadow 0.3s ease;
}

#download:hover {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.5);
}
