/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
    font-family: 'SundayWalk'; /*a name to be used later*/
    src: url('./assets/fonts/SundayWalk.otf'); /*URL to font*/
}

body {
  background-image: url("./assets/background/cardboard_background_5.jpg");
  background-size: cover;
  background-color: white;
  color: black;
  font-family: SundayWalk;
}

h1 {
  font-weight: bold;
  color: rgb(0, 0, 0);
  font-size: 108px;
  text-align: center;
  margin: 0;
  margin-bottom: 10px;
}

.navbar {
  width: 100%;
}

.navbar ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar a{
  font-size: 48px;
  color: black;
  text-decoration: none;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  border: 4px solid rgba(0, 0, 0, 0); /* or your preferred color */
  border-radius: 8px;      /* optional: rounds the corners */
}


.navbar a:hover {
  border: 4px solid black; /* or your preferred color */
  border-radius: 8px;      /* optional: rounds the corners */
  background-color: #f0f0f000; /* optional: adds a hover background */
}