*{
    margin: 0;
    padding: 0;
  
}

:root{
    --wwwhite: rgb(225, 220, 208);
    --gggreen: #1f7521;
    --mono: maple-reg, 'Courier New', Courier, monospace;
    --mechanik: mechanik-reg, san-serif;
}

@font-face {
  font-family: "maple-reg";
  src: url("assets/maple-reg.ttf") format("truetype");
  font-style: normal;
  font-weight: 100;
}

@font-face {
  font-family: "mechanik-reg";
  src: url("assets/mechanik-reg.otf") format("OpenType");
  font-style: normal;
  font-weight: 100;
}

@font-face {
    font-family: wwweggie;
    src: url(assets/wwweggie-test.woff);
}

body{ 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.introduction{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 200px auto;
    text-align: center;
}

 h1{
    font-family: var(--mechanik);
    margin-left: 15px;
    margin-right: 15px;
    font-weight: 100;
    font-size: 2.1rem;
    text-align: center;
    hyphens: manual;
    line-height: 3rem;
    color: var(--gggreen);
    max-width: 900px;

 }

 .w {
    font-family: wwweggie;
    display: inline-block;
    line-height: 1;
    vertical-align: baseline;
 }

 .one{
    font-size: 1.9rem;
    position: relative;
    left: 2px;
    bottom: -4px;
    margin: 0 -2px;
 }

 .two{
     font-size: 3.5rem;
      position: relative;
      margin: 0 -7px 0 -15px;
    line-height: 1;
    vertical-align: -0.3em;

     
 }
.introduction > p{
    font-size: clamp(0.95rem, 1.3rem, 1.6rem);
    margin: 30px;
    font-family: var(--mono);
    color: var(--gggreen);
}

/*
@media (max-width: 768px) {
p {
font-size: 0.95rem;}
}

@media (max-width: 480px) {
p {
font-size: 0.5rem;}
}*/

/*figure out how to import as svg/selectable*/
img{
    max-width: 700px;
    margin-bottom: 30px;
    margin-left: 5%;
    margin-right: 5%;
}


a{
    text-decoration: none;
    color: var(--gggreen);
}

.dig-in{
    position: fixed;
    left: 50%;
    top: calc(100vh - 5rem);
    transform: translateX(-50%);
    margin-top: 0;
    padding: 10px 35px;
    border: var(--gggreen) solid 1px;
    background-color: rgba(226, 226, 226, 0);
    font-family: var(--mechanik);
     font-weight: 100;
    font-size: 1rem;
    border-radius: 5px;
    border-style: dotted;
    z-index: 999;
    animation: slug 600s linear forwards;
    white-space: nowrap;
}

.dig-in:hover{
    animation: sway 6s infinite ease-in-out;
}

@keyframes slug {
    0% { transform: translateX(-50%) translateX(0); }
    100% { transform: translateX(-50%) translateX(120vw); }
}

@keyframes sway {
    0%,
    100% { transform: translateX(-50%) translateX(0); }
    50% { transform: translateX(-50%) translateX(4px); }
}

