
.hide {
    opacity: 0;
}

.show{
    opacity: 1;
}

body{
    background-image: url("./woman_sunglasses.jpeg");
    background-size: 500px 500px;
}

#thestuff{
    /*background-image: url("https://external-content.duckduckgo.com/iu/?u=http%3A%2F%2Fi2.kym-cdn.com%2Fphotos%2Fimages%2Foriginal%2F000%2F837%2F084%2F3a5.jpg&f=1&nofb=1");*/
    background-image: url("./ippo.jpg");
    position: absolute;
    left: 1200px;
    top: 0px;
    padding: 50px;
    animation: grow 50s infinite;
}
#fell{
    background-color: rgb(80, 255, 11);
    display: inline;
}
#write{
    background-color: rgb(9, 255, 255);
    display: inline;
}
#doesntmatter{
    background-color: rgb(255, 62, 62);
    display: inline;
}
#advance{
    background-color: rgb(250, 206, 11);
    display: inline;
    font-size: 100px;
    animation: changecolor 2s infinite;
}

.p1{
    font-family: "Papyrus", fantasy;
}

@keyframes changecolor{
    0%{background-color: rgb(250, 206, 11);}
    25%{background-color: rgb(99, 250, 11);}
    50%{background-color: rgb(11, 250, 250);}
    75%{background-color: rgb(202, 11, 250);}
    100%{background-color: rgb(250, 11, 11);}
}

@keyframes grow{
    0%{width: 200px; height: 400px; left: 1200px; top: 0px;}
    100%{width: 1000px; height: 2000px; left: 0px; top: 200px;}

}