body {
    /*background-image: url(https://camo.githubusercontent.com/028ca5bf59ef9155c60d518c9410e8ecfa3b1b3fd19b3631643ad96a4efe0679/68747470733a2f2f7777772e64726f70626f782e636f6d2f732f777731656c70736431616676306d6e2f73616d706c655f312e6769663f7261773d31);*/
    background-image: url(https://64.media.tumblr.com/eae444f1632468bb97ca7c02cc1a1657/04cb582ab8e95f0a-d4/s400x600/dc82c36065265c5783853320f5e1bb6645bfc207.gifv);
    background-size:cover;

}   

@keyframes color {
    from {color: lightcoral;}
    to {color: lightslategray;}
  }

@keyframes reverse {
    from {color: lightcoral;}
    to {color: mintcream;}
}

@keyframes move {
    0% {
        padding-left:50px;
    }
    50% {
        padding-left: 25%;
    }
    100% {
        padding-left:50px;
    }
}

h1 {
    font-family: 'Poppins', sans-serif;
    color: mintcream;
    font-weight: 600;
    font-size: 12ch;
    padding: 0%;
    margin: 0%;
}

h2 {
    font-family: 'Poppins', sans-serif;
    color: mintcream;
    font-weight: 600;
    font-size: 6ch;
    padding: 0%;
    margin: 0%;
}

p {
    font-family: 'Poppins', sans-serif;
    color: mintcream;
    font-weight: 500;
    font-size: 3ch;
    padding: 50px;
    margin: 0px;
}

h3 {
    font-family: 'Poppins', sans-serif;
    color: mintcream;
    font-weight: 600;
    font-size: 4ch;
    padding: 50px;
    margin: 0px;
}

h1 + h2 {
    line-height: 0px;
}

h2 + p {
    line-height: 50px;
}

p + h3 {
    margin-top: -85px;
}

h3 + img {
    margin-top: -70px;
}

img + p {
    margin-top: -70px;
}

img {
    padding: 50px;
    margin: 0px;
}

h3 + button {
    margin-top: -20px;
}

button + p {
    margin-top: -20px;
}

p + p {
    margin-top: -50px;
}

.bar {
    font-family: 'Poppins', sans-serif;
    color: mintcream;
    font-weight: 400;
    font-size: 3ch;
    display: flex;
    justify-content: space-around;
    background-color: rgba(0, 0, 0, 0.4);
}

a {
    text-decoration: none;
    color: mintcream;
}

a:hover {
    text-decoration: underline;
    animation-name: reverse;
    animation-duration: 3s;
}

#current:hover {
    animation-name: color;
    animation-duration: 3s;
}

#current {
    color: lightslategray;
}

#center {
    margin: auto;
    text-align: center;
    width: 50%;
    padding: 10px;
    padding-top: 50px;
}

#box1 {
    padding-left: 50px;
    animation-name: move;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

#separate {
    font-family: 'Poppins', sans-serif;
    color: lightcoral;
    font-weight: 400;
    font-size: 3ch;
}

button {
    margin-left: 55px;
    padding: 30px;
    font-size: 2ch;
}