/* 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: "WhiteOnBlack";
  src: url("fonts/WhiteOnBlack.ttf") format("truetype");
}

@font-face {
  font-family: "Kindergarten";
  src: url("fonts/kindergarten.ttf") format("truetype");
}

@font-face {
  font-family: "Chess";
  src: url("fonts/CASEFONT.TTF") format("truetype");
}

body {
  background-color: white;
  max-width: 1500px;
  color: black;
  font-family: Arial;
  margin: 0;
  padding: 0;
}

h1 {
  font-family: "WhiteOnBlack";
  font-size: 75px;
  margin-bottom: 15px;
}
  
section {
  text-align: center;
  margin: auto;
  width: 50%;
}

#principal {
  font-family: "Kindergarten";
  display: inline-block;
  height: 15%;
  width: 100%;
  padding: 10px;
  background-image: url("imatges/reus.png");
  background-repeat: no-repeat;   
  background-size: cover; 
  background-position: 100% 25%;
  outline: 10px dashed black;
  outline-offset: -10px;
  border: 0px;
  margin: 2px;
}

nav ul {
  list-style-type: none;
}

nav li {
  display: inline;
}

#navegacio {
  display: block;
  height: 60px;
  width: 100%;
  background-color: gray;
  border: 1px solid black;
}

#menu {
  height: 35px;
  width: 65px;
}

#opcions {
  font-family: "Chess";
  height: 100%;
  width: 100%;
  font-size: 25px;
  background-color: gray;
}


