body {
  text-align: center;
  font-family: 'PT Mono', Monaco, "Courier New", monospace; 
  background:  #29282e;
  color: #f2e6d4;
}


/***********
 LAYOUT   
************/

section#hero {
  margin-top: 20vh;
  font-weight: bold;
  height: 25vh;
  min-height: 11em;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
section#cta {
  height:  35vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/***********
 TYPOGRAPHY   
************/

#name {
  background-image: url(../images/soderberg_gif-01.gif);
  background-color: #f2e6d4;
  background-repeat: repeat;
  background-position: 33px 25px;
  background-size: contain;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-font-smoothing: antialiased;
  color: black; /* incase clipping fails */
  font-size: clamp(5.25rem, 2.7955rem + 12.2727vw, 12rem);
  margin: 0;
  font-weight: 800;
}
#tagline {
  margin-top: 0;
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  font-weight: 200;
  letter-spacing: 2px;
}

p { 
  max-width: 480px;
  margin: 1em auto;
  font-weight: normal;
  color: #f2e6d4;
}

/**************
 LINKS BUTTONS   
***************/

#action a {
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  outline:  0;
  border: 0;
  text-decoration: none;
  border-radius: 0;
  background: #f2e6d4;
  color: #333;
  font-size: 1rem;
  line-height: 1rem;
  padding: 0.75em 1em;
}
#action a:hover,
#action a:focus {
  background: #fff;
}
#action a:focus {
  outline: 1px solid #fff;
}
#action a:active {
  border-style: inset;
  border: 1px solid black;
  margin-top: 4px;
  background: #777;
  color:  white;
}

p a { 
  color:white; 
}
p a:hover { 
  text-decoration:none; 
  background:white; 
  color:#333; 
}