/* 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." */

@font-face {
  font-family: 'Spacemono';
  font-weight: 400;
  src: url('/assets/spacemono-regular-webfont.woff2') format('woff2'),
       url('/assets/spacemono-regular-webfont.woff') format('woff');
}

@font-face {
  font-family: 'Spacemono';
  font-style: italic;
  font-weight: 400;
  src: url('/assets/spacemono-italic-webfont.woff2') format('woff2'),
       url('/assets/spacemono-italic-webfont.woff') format('woff');
}

@font-face {
  font-family: 'Spacemono';
  font-weight: 700;
  src: url('/assets/spacemono-bold-webfont.woff2') format('woff2'),
       url('/assets/spacemono-bold-webfont.woff') format('woff');
}

@font-face {
  font-family: 'Spacemono';
  font-style: italic;
  font-weight: 700;
  src: url('/assets/spacemono-bolditalic-webfont.woff2') format('woff2'),
       url('/assets/spacemono-bolditalic-webfont.woff') format('woff');
}

  body {
        background-color: seashell; /* For browsers that do not support gradients */
        background-image: linear-gradient(to right, seashell, honeydew);
        color: black;
        font-weight: 400;
        margin-top: 20px;
        margin-left: 10px;
        font-family: 'Spacemono', monospace;
      }
      
  .response {
        max-width: 650px;
        min-width: 320px;
        padding: 10px;
      }
      
  .logo {
        margin-left: 140px;
        margin-bottom: 0px;
      }
      
  h1 {
        font-weight: 700;
        font-style: italic;
        margin-bottom: 10px;
        margin-top: 10px;
      }
      
  h2 {
        font-size: 18px;
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: 700;
        text-decoration: underline;
        letter-spacing: .5px;
      }
      
  .red {
        font-size: 24px;
        color: #eb0000;
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: 700;
        text-decoration: underline;
        letter-spacing: .5px;
      }
      
  h3 {
        line-height: 1.1;
        margin-top: 10px;
        margin-bottom:5px;
        font-weight: 700;
        font-style: italic;
      }
      
  p {
        line-height: 1.3;
        margin-top: 0px;
      }
      
  .dates {
        font-size: 20px;
      }
      
  .day {
        margin-bottom: 5px;
        text-decoration: underline;
      }
     
  .register {
        font-size: 20px;
        background-color: ghostwhite;
        border: 1px solid grey;
        border-radius: 5px;
        padding: 10px;
        margin-top: 25px;
        margin-bottom: 25px;
        width: 200px;
        text-align: center;
      }
    
  ul {
        margin: 0px;
        margin-top: -15px;
        margin-bottom: 10px;
        line-height: 1.4;
      }
      
  .copyright {
    
        font-size: 14px;
        font-style: italic;
        margin-bottom: 20px;
      }
  
  .tight {
        margin-top: 0px;
      }
  
  .space {
        margin-bottom: 20px;
      }
  
  .pic {
      max-width: 450px;
      min-width: 320px;
      width: 100%;
      margin-bottom: 10px;
      }
  
  .pic2 {
    max-width: 400px;
    min-width: 320px;
    width: 80%;
    margin-bottom: 10px;
  }
  
  /*.caption {
    margin-bottom: 25px;
    margin-top: -10px;
  }*/
  
  .caption {
    margin: 0 auto;
    text-align: left;
    margin-bottom: 30px;
    width: 100%;
    font-size: 13px;
    }
  
  .bio {
    font-size: 13px;
  }
  
  .smaller {
    font-size: 13px;
  }
  
  .big {
    font-size: 40px;
    color: #eb0000;
  }
  
  * {
    box-sizing: border-box;
  }

.column {
    float: left;
    width: 25%;
    padding: 0px;
  }

/* Clearfix (clear floats) */
.row::after {
    content: "";
    clear: both;
    display: table;
  }

.logos {
    max-width: 650px;
    min-width: 320px;
    margin-bottom: 20px;
  }

.cdh {
    display: block;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    width: 50%;
  }

.update {
    color: #ff0000;
    padding: 5px;
    border: 1.5px solid black;
  }
  
  
  

