@font-face {
  font-family: 'Roboto-italic';
  font-style: normal;
  font-weight: 400;
  src: url('http://fonts.googleapis.com/css?family=Roboto/roboto-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: url('ruta_de_la_fuente/roboto-italic.woff2') format('woff2');
}

body {
  background-color: #ff8080;
  font-family: 'Roboto-italic', sans-serif;
  margin: 0;
}

.container {
  background-color: #fff;
  padding: 20px;
  margin: 20px auto;
  border: 2px solid #ff8080; 
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
}

hr {
  border: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.75);
}

header {
  background-image: url('https://lisa-coes.com/img/sharing-default.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 2px solid #ff8080; 
  border-radius: 10px; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
}

footer {
  background-color: #ff8080;
  padding: 20px;
  border: 2px solid #555; 
  border-radius: 10px; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /
}

/* Estilos para elementos en itálica */
.emphasis {
  font-style: italic;
}