
a:hover {
  background-color: #555;
}

a:active {
  background-color: black;
}

body {
  text-align: center;
  background-color: black;
}
h1 {
  margin: 1em 0 0.5em 0;
  font-weight: 100;
  color: #00caa6;
  font-style: italic;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 58px;
  line-height: 54px;
  text-shadow: 2px 5px 0 rgb(99 99 99 / 50%);
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
}

marquee {
  width: 50%;
  color: white;
  font-size: 30px;
}


      .blink {
        animation: blinker 1s linear infinite;
      }
      @keyframes blinker {
        50% {
          opacity: 0;
        }
      }

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 768px) {
a {
    background-color: red;
  color: white;
  padding: 0.7em 0.7em;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Comic Sans MS", cursive;
  line-height: 2;
}
footer {
  position: unset;
}
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 768px) {
a {
    background-color: red;
  color: white;
  padding: 1em 1.5em;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Comic Sans MS", cursive;
}
}
