/* 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." */

body {
  background-image: url('../images/086C.jpg');
  background-color: #FFEDAB;
  color: #000000;
  font-family: 'Courier New', Courier, monospace;
  font-size: 20px;

  overflow: auto;
  scrollbar-width: thin;
}


/* Container */
.container {
  display: flex;
  align-items: flex-start;
  height: 300px; /* Or whatever */
  justify-content: center;

  text-align: center;

  margin: 60px 30%;
}

/* Main */
.main {
  /* background-color: #4f6815; */
  background-color: #d3d3d3;

  border-style: double;
  
  padding: 50px;
  padding-top: 10px;

  width: auto;
  text-align: justify;

  /* margin-top: 30px; */
}

.sidebar {
  width: auto;
  height: auto;
  padding: 20px;

  position: absolute;

  text-align: left;
}

/* Barra izquierda */
.left {
  margin: 0 20px 0 10%;
}

.tcenter {
  text-align: center;
}

/* Titulo con favicon */
.title-with-pic {
  display: flex;
  background-color: #1c2052;
  border-radius: 5px 5px 0 0;
  padding: 4px;
  color: #f7f7f7;
}

.title-with-pic img {
  width: 20px;
  height: 20px;

  margin-right: 10px;
}

/* enlaces finales */
.enlaces {
  display: flex;
  text-align: center;
  justify-content: center;
}
.enlacesBlog {
  text-align: center;
}
.anteriorSiguiente {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.anteriorSiguiente img {
  width: 10%;
}

.button {
  display: flex;
  border-radius: 4px;
  border-style: double;
  background-color: #7a7a7a;

  color: #dad9ce;

  padding: 5px;
  margin: 5px;

  text-align: center;
  justify-content: center;
}
.button img {
  width: 20px;
  height: 20px;

  margin-right: 10px;
}
.button a {
  text-decoration: none;
  color: #dad9ce;
  display: flex;
}
.button:hover {
  background-color: #444444;
}

/* Contenido del main */
.content {
  display: flex;
}
.boxCont {
  padding: 20px;

  height: auto;

  border-style: solid;
  border-width: 1px;
  border-radius: 20px;
}

#paper {
  height: 620px;
  width: 680px;
  left: 50%;
  top: 50%;
  position: absolute;
  
  border-radius: 20px;
  background-color: #fff;
  background-image: url('../images/p01-bg-paper.gif');
  padding: 20px;
  box-shadow: 0px 0px 20px #574539;

  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  text-align: left;
  color: #303030;
}

#text{
  float: center;
  width: 643px;
  height: 544px;
  padding: 15px;

  overflow: scroll;
}
#text i {
  color: #be0000;
}
#text b {
  color: #1821a7;
}

.covered-by-your-grace-regular {
  font-family: "Covered By Your Grace", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}

