
* {
  box-sizing: border-box;
}

body {
  max-width:1200px;
  margin: auto;
  font-family: Arial;
  border: 1px solid  black;
  background-color: lightblue;
  }
 p {font-size:25px;
  }
/* Titol del Blog */
.titol {
  margin:5px 20%;
  border: 1px solid  black; 
  text-align: center;
  background: #ffffff;
  background-size: cover;
}

.titol h1 {
  font-size: 50px;
  color:#ffffff;
  padding:80px; 
}
.titol h2 {
  font-size: 30px;
  color:#661b00;
}
.nom-recepta{
	border: 1px solid  black;
	display:flex;
	padding:10px 10px 40px 10px;
	margin:5px 5px;
}
.nom-recepta h1 {
	text-align: center;
}	
.descripcio{
	border: 1px solid  black; 
	/*border-style: ridge;
    border-width: 17px;*/
    border-color: DodgerBlue;  
	margin:10px ;
	background: #ffffff;
	padding:10px 10px 10px 30px;
}
.descripcio img  {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  
  /*display: flex; */
  background-color:DodgerBlue
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  
  color: #f2f2f2;
  background-color:DodgerBlue;
  text-align: center;
  padding: 5px 80px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ffa280;
  color: black;
}


/* Create two unequal columns that floats next to each other */
/* Left column */
	

.leftcolumn {   
  float: left;
  width: 40%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 60%;
  background-color: lightblue;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  background-color: white;
  background: #ddd;
  padding: 20px 10px 20px 40px;
  margin-top: 20px;
  margin-left: 20px
}
.petit p {
	font-size:20px;
}

#doble {line-height: 450%;}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Elaboració */
.elabo {
  padding: 50px;
  text-align: left;
  background: #ddd;
  margin-top: 20px;
  background: white;
}
.elabo img {
	
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}




