body {
  margin: 0;
  padding: 0;
 background-color: #f7dbe9;
 background-image: url("https://www.transparenttextures.com/patters/stardust.png");
 font-family: verdana;
}
/* MARCO GRANDE */
.wrapper {
  width: 1100px;
  margin: 30px auto;
  background: #f2f7df;
  border: 6px solid #b7d58c;
  padding: 15px;
  display: block;
}
/* HEADER */
header img {
  width: 100%;
  border: 4px solid #b7d58c;
  display:block;
}
/* 3 COLUMNAS */
.layout {
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  gap: 15px;
  margin-top: 15px;
}
/* BOXES */
.box {
  background: #fdfbe9;
  border: 3px solid #b7d58c;
  padding: 15px;
}
.small {
  margin-top: 15px;
}
.center-box {
  text-align: center;
}
/* PERFIL */
.pfp {
  width: 100%;
  border: 3px solid #b7d58c;
  margin-bottom:10px;
}
/* MENU */
.menu a {
  display: block;
  background: #dbeeb2;
  border: 2px solid #a7c77a;
  padding: 10px;
  margin-bottom: 8px;
  text-decoration: none;
  color: #5a7d3a;
  font-weight: bold;
}
.menu a hover {
  background: #b7d58c;
}
/* FOOTER */
footer {
  margin-top: 20px;
  text-align: center;
  padding: 10px;
  border-top: 3px solid #b7d58c;
}