#grad3 {
  height: 200px;
  background-color: red; /* For browsers that do not support gradients */
  background-image: repeating-linear-gradient(
    190deg,
    red,
    blue 7%,
    gold 10%
  );
}

@font-face {
  font-family: myFirstFont;
  src: url(https://cdn.glitch.global/5fef0888-660a-4e3d-b60e-183116a0c640/Dinot%20Font.otf?v=1705383614179);
}

a:link, a:visited {
  background-color: red;
  color: blue;
  padding: 15px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: "Copperplate";
  box-shadow: 5px 5px black;
}

a:hover, a:active {
  background-color: pink;
}

body {
  background-image: repeating-linear-gradient(
    190deg,
    firebrick,
    blue 7%,
    goldenrod 10%
  );
}

p {
  word-wrap: break-word;
}

h1 {
  color: navy;
  font-family: myFirstFont;
  margin-left: 20px;
}
