body {
    width: 100%;
    min-height: 100vh;
    display: grid;
    align-items: center;
    justify-items: center;
    font-family: "Marvel", Arial, sans-serif;
    font-size: 100%;
    background-color: #fefefe
    
}

div {
    -webkit-animation: fadein 1s ease-in; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1s ease-in; /* Firefox < 16 */
     -ms-animation: fadein 1s ease-in; /* Internet Explorer */
      -o-animation: fadein 1s ease-in;
}
h1 {
    font-size: 3.2rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    
}
img {width: 20rem;}
@media (max-width: 500px) { img {width: 15rem;} }
@media (min-width: 1800px) { img {width: 25rem;} }

p {margin: 0.2rem;
text-align: center;
font-weight: 300;
line-height: 2;
letter-spacing: 2px;

}
@media (max-width: 500px) { p {font-size: 0.9rem;} }


a {color: #808285;
text-decoration: none;}
a:hover {color: #80B4B0;}


@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}