@font-face {
  src: url(../../fonts/frank/FrankfurterChrD/FrankfurterChrD.ttf);
  font-family: frank;
}

body, html {
    height: 100vh;
    width: 100vw;
}

@media screen and (min-width:320px){
  .wrapper {
    height: 100vh;
    width: 100vw;
    position: fixed;
    border: 1px solid chartreuse;
  }
  .triangle-1 {
    width: 0;
    height: 0;
    border-bottom: 100vh solid black;
    border-left: 100vw solid limegreen;
    border-right: 0;
    position: fixed;
    z-index: 1;
  }
  a {
    text-decoration: none;
    position: fixed;
    z-index: 2;
  }

  p {
    font-family: frank;
    font-size: 30pt;
    color: white;
    position: fixed;
    width: 100vw;
    text-align: center;
  }
  .dog-text {
    filter: drop-shadow(-2px 2px 2px black);
    top: 25vh;
  }
  a:hover > p{
   color: rgb(243, 0, 170);
  }
  a:hover + .triangle-1 {
    filter: invert(1);
  }
  .airbrush-text {
    bottom: 25vh;
    filter: drop-shadow(-2px 2px 2px rgb(0, 255, 21));
  }

  .home {
    color: white;
    position: fixed;
    bottom: 0;
    width: 100vw;
    text-align: center;
  }

}
@media screen and (min-width:500px){
  p {
    font-size: 30pt;
  }
}

@media screen and (min-width:700px){
  p {
    font-size: 40pt;
  }
}

@media screen and (min-width:900px){
  p {
    font-size: 45pt;
  }
}