body {
    background-color: black;
}
span {
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    word-spacing: 60%;
    font-size: 2em;
    position: absolute;
}
h1 {
    color: gold;
   
  font-family: "Lavishly Yours", cursive;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 6em;
  background-image: url(yummy/germanflag.png);
}
.mar {
    height: 24vh; 
}
.tired {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: red;
    background-image: none;
    position: absolute;
}
.vicodin {
    position: absolute;
    z-index: -999;
    animation: pain 10s infinite;
}
@keyframes pain {
    0% {
        margin-top: 10%;
        margin-left: 15%;
        filter: brightness(50%);
        transform: scale(.001)
    }
    10%{
        margin-left: 0%;
        margin-top: 10%;
        filter: brightness(10%)
    }
   
    90% {
        filter: brightness(300%);
        transform: scale(1)
    }
     100% {
        margin-bottom: 10%;
        margin-right: 15%;
        filter: brightness(30%);
        transform: scale(.001)
    }
}
.house {
    position: absolute;
    animation: house 10s infinite;
}
.addict {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 2em;
    color: red;
}
@keyframes house {
    0% {
        margin-left: 0%;
        margin-bottom: 0%;
    }
    50% {
        margin-left: 80%;
        margin-bottom: 0%;
    }
    60% {
         animation-play-state: paused 3s;
    transform: scaleX(-1);
    } 
    100% {
        margin-left: 0%;
        margin-bottom: 0%;
    }
}
