@font-face {
  font-family: "Graffiti";
  src: url("../font/AttackGraffiti-3zRBM.ttf")
}

* {
    padding: 0;
    margin: 0;
    font-family: 'Comfortaa', Verdana, Geneva, Tahoma, sans-serif;
}

html {
    margin: 0;
}

header {
  padding: 1rem;
  background-image: url("../img/background-splash.jpg");
  height: 400px;
  text-shadow: 3px 4px #c46d93;
  text-align: center;
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
}

h1 {
  font-family: 'Graffiti', cursive;
  letter-spacing: .5rem;
  padding: 40px 80px;
  color:#eeeeee;
  text-align: center;
  font-size: 150px;
}

img {
    border-radius: 50%;
    border: 4px solid gray;
}

footer {
    position: fixed;
    bottom: 0px;
    left: 0px;
}

.listContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.listContainer > section {
    width:25%;
    border: 1px solid rgb(0, 0, 0);
}

input[type=text] {
    height: 50px;
    width: 200px;
    margin-bottom: 20px;
  }

ol > li {
    list-style-position: inside; 
}

#search-bar {
    top: 0px;
    right: 0px;
    position: absolute;
    padding: 1rem;
    height: 25px;
}

form {
    width: 500px;
  	margin-bottom: 20px;
}

form > input[type=text], form > select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

form > input[type=submit] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form > input[type=submit]:hover {
  background-color: #45a049;
}

form > label {
    font-weight: bold;
    font-size: larger;
}

div.start-feat1 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem;
  margin-top: 7rem;
}

div.start-item {
  text-align: center;
}

div.start-item p {
  font-size: 250%;
  padding: 50px 2rem;
}

div.start-item form {
  width: 200px;
  padding: 2rem 1rem;
  height: 100px;
}

button {
  transition-duration: 0.4s;
  display: block;
  justify-content: center;
  padding: 2rem;
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  font-size: 250%;
}

button.begin, button.profile{
  margin-top: 8rem;
}

button:hover {
  background-color: pink; /* Green */
  color: white;
}

div.cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem;
  margin-top: 10rem;
}

div.cards p.vs{
  font-size: xx-large;
  margin-top: 40px;
}

button.card-selection {
  width: 400px;
}

div.card h2{
  padding-bottom: 1rem;
  font-size: 100px;
}

div.final-playlist h2 {
  text-align: center;
  padding: 2rem;
  font-size: xx-large;
}

table {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
}

th {
  font-size: xx-large;
  height: 4rem;
  text-align: left;
  color: #AA336A;
  background-color: #d3d3d3;
}

td, th {
  font-size: larger;
  padding: .5em;
  border-bottom: 1px solid #d3d3d3
}

tr:nth-child(2n) {
  background-color: #eee;
}

tbody tr:hover {
  background-color: pink;
}

div.social-media {
  margin: 100px 0;
}

div.social-media a {
  padding-right: 1rem;
  text-decoration: none;
}

.bracket {
  display: flex;
  flex-wrap: wrap;
}

.round {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 10px;
  flex: 1;
}

.matchup {
  margin: 15px;
  border-radius: 5px;
}

.song {
  padding: 10px 8px;
  margin-bottom: 5px;
}

.song:hover {
  background-color: pink;
}

@media (min-width: 598px) {
  nav {
    background-color: pink;
    width: 100%;
    display: flex;
    padding: 1rem;
  }

  nav div#tabs a {
    font-size: 25px;
    margin: 1rem;
    text-decoration: none;
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    border-bottom: 3px solid transparent;
    }
    
  nav div#tabs a:hover {
    border-bottom: 3px solid #AA336A;
  }
    
  nav div#tabs a.active {
    border-bottom: 3px solid #AA336A;
  }

  div#search-bar {
    margin: 1rem;
  }
}


@media (min-width: 768px) {
  header {
    padding: 2rem;
    height: 300px;
  }

  h1 {
    font-size: 120px;
  }

  nav div#tabs a {
    font-size: 20px;
  }

  div.start-item p {
    font-size: 200%;
    padding: 50px 2rem;
  }

  button {
    font-size: 180%;
  }
}

@media (min-width: 992px) {
  header {
    padding: 2rem;
    height: 250px;
  }

  h1 {
    font-size: 100px;
  }

  nav div#tabs a {
    font-size: 20px;
  }

  div.start-item p {
    font-size: 200%;
    padding: 50px 2rem;
  }

  button {
    font-size: 150%;
  }
}

@media (min-width: 1200px) {
  header {
    padding: 2rem;
    height: 300px;
  }

  h1 {
    font-size: 120px;
    margin-top: 30px;
  }

  nav div#tabs a {
    font-size: 20px;
  }

  div.start-item p {
    font-size: 200%;
    padding: 50px 2rem;
  }

  button {
    font-size: 150%;
  }

  div.start-item form {
    width: 150px;
  }
}

.row {
  display: flex;
}

.column {
  flex: 33.33%;
  padding: 5px;
}

#playlists img {
  border-radius: 0%;
}

body {
  padding-bottom: 75px;
}


