@font-face {
   font-family: myFirstFont;
   src: url(cooper-hewitt/CooperHewitt-Book.otf);
}
@font-face {
   font-family: mySecondFont;
   src: url(cooper-hewitt/CooperHewitt-Light.otf);
}



*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
  width: 100%;
  height: 100%;
 
}



body {
  
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--color);
  display: flex;
  transition: color 120ms ease-out 0s;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 120ms ease-out 0s;
}
a:hover, a:focus {
  color: var(--primary-dark);
}

.c-hero {
  width: 100%;
  max-width: 68rem;
  margin: auto;
  padding: 0 0 0 0;
 

}

.c-title {
  font-family: myFirstFont;
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.6;
  letter-spacing: 5px;

}

.c-social{
  font-family: mySecondFont;
  letter-spacing: 5px;
  text-align: center;

}
p{
  text-align: center;
  font-family: myFirstFont;
  font-size: 70%;
}