/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* FONTS */
   @font-face {
      font-family: Garamond;
      src: url('https://moldcollective.neocities.org/fonts/Garamond%20Regular.ttf');
    }
    
    @font-face {
      font-family: November;
      src: url('https://moldcollective.neocities.org/fonts/novem___.ttf');
    }
    
  /* GENERAL FORMATTING */
    body {
      font-family: 'Garamond', serif;
      margin: 0;
      background-image:url('https://moldcollective.neocities.org/images/general/mold_background.png');
      background-attachment: fixed;
      background-size:cover;
    }
    
    * {
      box-sizing: border-box;
    }
    
    #container {
      max-width: 100vw;
      margin: 0 auto;
    }
    
    
    #flex {
        display: flex;
        color: #000000;
    }
    
    /* ELEMENTS */
    
      main {
        width: 95vw;
        margin: 10px auto;
        flex: 1;
      }
      
       main a, body a {
      color: #ebded4;
      text-decoration: underline;
      text-decoration-style: wavy;
    }
    
      main a:hover, body a:hover{
      color: #cba3b5;
      }
      
      footer {
        background-color: #ebded4;
        width: 100vw;
        height: 30px;
        padding: 10px;
        text-align: center;
        color: #242424;
        margin-top: 50px;
      }
      
      .trans-box {
        background-color: RGB(0, 0, 0, 0%);
        border-width:  0;
        border-style:  solid;
        padding: 5px;
        margin-bottom: 5px;
        width: 100%;
        height: fit-content;
      }

.box {
  background-color: #738561;
  border-width: 2px;
  border-style: dotted;
  border-color: #ebded4;
  width: 75%;
  margin: auto;
  height: fit-content;
  margin-bottom: 50px;
  padding: 10px;
}

.artist-box, .zine-box {
  background-color: #738561;
  border-width: 2px;
  border-style: dotted;
  border-color: #ebded4;
  width: 100%;
  margin: auto;
  margin-bottom: 50px;
  padding: 10px;
}

.artist-box {
  height: fit-content;
}

.zine-box {
  height: 275px;
  overflow-y: scroll;
}
            
            .image {
              display: block;
              width: 100%;
            }
              
      
    /* TEXT STUFF */
    
      h1 {
        color: #ebded4;
        font-family: "November";
        font-size: 75px;
        text-align: center;
        text-shadow: 2px 5px 2px black;
      }
      
      h2 {
        color: #ebded4;
        font-family: "Garamond";
        font-size: 25px;
        font-weight: bold;
        text-align: center;
        text-shadow: 2px 2px 2px #714e76;
      }

p, ul {
  color: #ebded4;
  size: 20px;
  font-family: "Garamond";
  margin: 8px;
  line-height: 1.3;
}
      
    /* ALIGNMENT */
      
    .left-align {
      text-align: left;
    }
    
    .center {
      display: block;
      margin-left: auto;
      margin-right: auto;
      width: 50%;
    }
    
    
    .right-align {
      text-align: right;
    }
    
    .row {
      display: flex;
      flex-wrap: wrap;
      padding: 4 4px;
      padding-bottom: 2px;
      height: fit-content;
    }
            
    .column {
      float: left;
      flex: 30%;
      padding: 2vw;
            }

.artist-column {
      float: left;
      flex: 50%;
      padding: 2vw;
            }

.column img, .artist-column img {
  display: flex;
  align-content: center;
  width: 75%;
}

.column img:hover {
transform: scale(1.25) rotate(10deg);
transform-origin: 50% 50%;
  transition: 1s;
}     
    
            
            .row:after {
              content: "";
              display: table;
              clear: both;
            }
    
     
   .right{
    float:right;
}

.left{
    float:left;
}
    
    .center {
      text-align: center;
    }

     /* media query */
    
    @media only screen and (max-width: 900px) {
      #flex {
        flex-wrap: wrap;
      }
      
    /* item ordering */
    
    main {
      order: 1;
    }
    }