body {
    background-image: url("/images/MURRICA.gif");
    background-repeat: repeat;
    background-color: red
}

h1, h2, p {
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease-out;
}

h1:hover, h2:hover, p:hover {
    background-color:rgba(0, 0, 0, 1)
}

h1, h2, p, img {
    display: flex;
    justify-content: center;
    align-items: center;
} 
