/*
*   Colours
*   Reds:
*   #DF4242
*   #C33A3A
*   #A73232
*   #8B2929
*   #6F2121
*   #541919
*   #381111
*   #1C0808
*   Text:
*   #EEEEEE
*   #111111
*   Dark Grays:
*   #212121
*   #333333
*   #555555
*   Light Whites:
*   #F2F2F2
*   #FAFAFA
*/
html { 
    margin: 0;
}
* { 
    box-sizing: border-box;
}

a,
a:visited,
a:link,
a:hover,
a:active
{
    text-decoration: none;
}
body
{
    background: #f2f2f2;
}
header
{
    height: 240px;
    background: #f2f2f2;
    box-shadow: none;
}
header nav
{
    position: absolute;
    top: 50%;
    right: 65px;
}
header nav a
{
    font-size: 1.1em;
    font-weight: 500;
    line-height: 0;
    margin-right: 12px;
}
header.smaller nav a {
    line-height: 0;
}
header .container
{
    text-align: center;
    position: relative;
    padding: 24px;
}
header .container h1
{
    font-size: 5em;
    color: #cf2817;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Source Sans Pro', sans-serif;
/*    padding: 10px 24px;
    border: 14px solid #cf2817;*/
}
header .container .logo
{
    display: inline-block;
}
header .container .logo h1
{
    display: inline-block;
}
header.smaller .container .logo h1
{
    display: none;
}
header .container .initial
{
    background: repeating-linear-gradient( 
        45deg, 
        #000000, 
        #000000 105px, 
        #cf2817 100px, 
        #cf2817 220px
    );
    padding: 24px 38px;
    color: #f2f2f2;
    font-size: 8em;
    border: none;
    line-height: 101px;
    vertical-align: top;
}

h2{
    font-size: 3em;
    color: #cf2817;
    margin: 0;
    font-weight: bold;
    font-family: 'Source Sans Pro', sans-serif;
}

.namelist{
    text-align: center;
    padding: 0 20vw;
}

/* CSS */
.button-27 {
  appearance: none;
  background-color: #000000;
  border: 2px solid #1A1A1A;
  border-radius: 15px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 1% 0;
  min-height: 60px;
  min-width: 0;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 33vw;
  will-change: transform;
}

.button-27:disabled {
  pointer-events: none;
}

.button-27:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-27:active {
  box-shadow: none;
  transform: translateY(0);
}