@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Mono:700');
@font-face {
    font-family: 'Quattro';
    src: url('../fonts/iAWriterQuattroS-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Quattro';
    src: url('../fonts/iAWriterQuattroS-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Quattro';
    src: url('../fonts/iAWriterQuattroS-Bold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Quattro';
    src: url('../fonts/iAWriterQuattroS-BoldItalic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
}


body{
  font-family: 'Quattro', sans-serif;
  color: #613333;
  background-color: #f8f6f5;
  margin: 0;
  font-size: 14px;
}

.headerText{
  font-size: 18px;
}

.ns{
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
}

a, a:visited{
  color: #810000;
  text-decoration: none;
}

a:hover{
  color: #613333;
  text-decoration: none;
}

b{
  font-weight: 600;
}

h1, h2, h3, h4{
  font-family: 'Quattro', sans-serif;
  font-weight: 300;
}

h1{
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 2em;
  font-weight: 400;
}

.header{
  margin: 0;
  position: relative;
  width: 100vw;
  text-align: center;
}

.header img{
  max-height: 100vh;
}

.header h1{
  color: #000;
  font-family: 'Quattro', sans-serif;
  font-size: 1em;
  font-weight: 900;
  text-align: center;
  margin-top: -2.5em;
  text-transform: uppercase;
}

.header h2{
  color: #810000;
  font-family: 'Quattro', sans-serif;
  font-size: 1em;
  font-weight: normal;
  font-style: italic;
}


.header span:hover{
  cursor: pointer;
}

.heading{
  font-family: 'Quattro', sans-serif;
  padding-bottom: 0.2em;
  border-bottom: 1px #810000 solid;
  margin: 2.4rem 8vw 2rem 8vw;
  font-size: 1.5em;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.partyBox{
  margin: 2em 0;
  text-align: center;
  width: 100%;
}

.partyBox img{
  animation: pulse 3s infinite;
}

.partyBox img:hover{
  cursor: pointer;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
  }
  75% {
    transform: scale(0.95);
  }
  90% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.95);
  }
}

.note{
  margin: 0 8vw;
  -webkit-hyphens: auto;
     -moz-hyphens: auto;
          hyphens: auto;
  text-align: justify;
}


.cols{
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  /* background-color: yellow; */
}

.col{
  width: 23vw;
  min-width: 8em;
}

.piece a, .piece a:visited{
  color: #613333;
}

.links{
  margin: 0em 8vw;
}

.link{
  margin: 1em 0;
}

.name{
  font-style: italic;
}

.red{
  color: #810000;
}

.rainbow{
  /* color: #ff487a; */
  transition: color .3s ease-in-out;
   -moz-transition: color .3s ease-in-out;
  text-decoration: none;
}

.rainbow:hover, .luckyDip:hover{
  -webkit-animation: rainbow 0.7s infinite;
  animation: rainbow 0.7s infinite;
}

.lucky:hover{
  -webkit-animation: rainbow 0.7s infinite;
  animation: rainbow 0.7s infinite;
  cursor: pointer;
}

.luckyDip{
  font-size: 1.5em;
  text-align: center;
  margin: 2em auto;
  padding: 0.5em 1em;
}

.musicBox{
  display: flex;
  align-items: center;
  margin: 2em 10em;
  justify-content: center;
}

 @-webkit-keyframes rainbow {
   0%, 100% { color: #7ccdea; }
   16%      { color: #0074d9; }
   32%      { color: #2ecc40; }
   48%      { color: #ffdc00; }
   64%      { color: #b10dc9; }
   80%      { color: #ff4136; }
 }
 @keyframes rainbow {
   0%, 100% { color: #7ccdea; }
   16%      { color: #0074d9; }
   32%      { color: #2ecc40; }
   48%      { color: #ffdc00; }
   64%      { color: #b10dc9; }
   80%      { color: #ff4136; }
 }

 #writersDiv{
   margin: 2em 8vw 6em 8vw;
 }

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

 .wcol{
   width: 20vw;
 }

 .wcol a{
   line-height: 1.8em;
 }

@media only screen and (max-width: 680px) {

  .musicBox{
    display: flex;
    align-items: center;
    margin: 2em;
    justify-content: center;
  }

  .heading{
    text-align: center;
    margin: 1em 12px 2em 12px;
  }

  .header{
    margin: 0em 0;
    width: 100vw;
  }

  .headerText{
    margin-top: -6px;
    padding: 6px;
  }

  .header img{
    max-width: 100%;
  }

  .header h1, .header h2{
    text-align: center;
    margin: 0 12px;
  }

  .header h1{
    font-size: 1em;
  }

  .header h2{
    font-size: 0.85em;
    margin: 0.4em 12px 0.2em 12px;
  }


  #writersDiv{
    margin: 1em 12px 2em 12px;
  }

  .links{
    margin: 0 12px;
  }

  .note{
    margin: 0 12px;
  }

  .cols{
    flex-direction: column;
  }
  .col{
    margin-top: -1em;
    width: 100%;
  }
  .row{
    justify-content: space-between;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  .wcol{
    width: 48%;
    font-size: 0.83em;
    /* height: auto; */
  }
  .wcol:nth-of-type(1){order: 1;}
  .wcol:nth-of-type(2){order: 3;}
  .wcol:nth-of-type(3){order: 2;}
  .wcol:nth-of-type(4){order: 4;}


}

@media only screen and (max-width: 320px) {
  .wcol{
    width: 47%;
    font-size: 0.85em;
  }
}

@media only screen and (min-width: 1040px) {
  .header {
    max-width: 1040px;
    margin: 0 auto;
  }
}
