/* Define the styling for the html & body */

html {
  background: url('/img/background.jpeg') no-repeat center fixed;
  background-size: cover;
}

body {
  font-family: Arial, sans-serif;
  /*background-color: #f2f2f2*/;
  text-align: center;
  padding: 50px;
  /*background-image: url('/img/background.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;*/
}

p {
  color: rgb(219, 219, 219);
}

h1 {
  color: rgb(219, 219, 219);
  margin-bottom: 40px;
}

div {
  justify-items: center;
}

#usefulLink {
  margin-top: 60px;
}

/* Define the styling for the links */
a {
  display: inline-flex;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 230px;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  color: rgb(219, 219, 219);
  padding: 15px 30px;
  border: 2px solid rgb(219, 219, 219);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

/* Change the appearance of the links on hover */
a:hover {
  background-color: rgb(219, 219, 219);
  color: #333;
}

footer {
  color: rgb(114, 114, 114);
  margin-top: 400px;
  padding: 20px 20px;
  text-align: center;
}
