
/*
 * Home CSS
 */

body {
    background-color: rgba(161, 161, 161, 1);
    margin: 0;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
    font-size: 12pt;
}

p {
    font-weight: 400;
}

a {
    color: #701a5d;
}

h1, h2 {
    font-weight: 400;
    text-transform: uppercase;
}
/* Vellum banner */
#vellum-banner {
    background-color: #efefef;
    background-image: linear-gradient(#f4f4f4, #f1f1f1);

    text-align: center;
    padding-top: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid darkgray;
    
    min-height: 50vh;
}

@media (max-width: 512px) {
    #vellum-icon {
        max-width: 65%;
        height: auto;        
    }
}

#vellum-icon-and-logotype h1 {
    margin-top: 30px;
    margin-bottom: 0;
    font-size: 26pt;
    letter-spacing: 0.02em;
}

#vellum-icon-and-logotype h1 a {
    text-decoration: none;
    color: black;
}

#vellum-icon-and-logotype h2 {
    margin-top: 0px;
    color: rgb(68, 68, 68);
    font-size: 14pt;
    letter-spacing: 0.04em;
    margin-bottom: 30px;
}

a.action-button {
    font-weight: 500;
  text-decoration: none;
  padding: 6px 18px;
  border-radius: 8px;
  background-color: #68425d;
  color: white;
  box-shadow: none;
  -webkit-transition: background-color 300ms, box-shadow 600ms;
  -moz-transition: background-color 300ms, box-shadow 600ms;
  -ms-transition: background-color 300ms, box-shadow 600ms;
  -o-transition: background-color 300ms, box-shadow 600ms;
  transition: background-color 300ms, box-shadow 600ms; 
}

a.action-button:hover {
  background-color: #532246;
  box-shadow: 0px 0px 12px #743764; }


/*
 * Pages
 */
 
#pages {
    text-align: center;
    margin-top: 16px;
}
#pages ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}
#pages li {
    display: inline-block;
    margin-left: 0.75em;
    margin-right: 0.75em;
}
#pages a {
    font-size: 13pt;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 600;
    color: #fbfbfb;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

/* No longer fit at this size: */
@media (max-width: 500px) {
    #vellum-icon-and-logotype h1 {
        margin-top: 20px;
    }
    
    #pages li {
        margin-left: .35em;
        margin-right: .35em;
    }
    #pages li a {
        font-size: 11pt;
        letter-spacing: 0.08em;
    }
}

