/* 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:#f8edf2;

font-family:Georgia;

margin:0;

color:#6e4b5e;

background-image:url("https://i.pinimg.com/originals/77/0e/17/770e17f7a9f9f6d8b0e7c4b84f0f3d6f.gif");

}

/* columnas */

.container{

display:flex;

}

/* izquierda */

.left{

width:20%;

background:rgba(255,255,255,0.5);

padding:20px;

border-right:1px solid #d8b6c7;

}

/* centro */

.center{

width:60%;

padding:20px;

}

/* derecha */

.right{

width:20%;

background:rgba(255,255,255,0.5);

padding:20px;

border-left:1px solid #d8b6c7;

}

/* cajas */

.box{

background:rgba(255,255,255,0.7);

border:2px solid #e7c7d6;

border-radius:20px;

padding:20px;

margin-bottom:20px;

box-shadow:0px 0px 15px rgba(255,255,255,0.7);

}

/* títulos */

h2{

color:#b57ac7;

text-align:center;

letter-spacing:2px;

}

/* links */

a{

color:#a86ea8;

text-decoration:none;

}

/* efecto mouse */

a:hover{

color:white;

text-shadow:0px 0px 10px #ffb6e6;

}

/* imágenes */

img{

width:100%;

border-radius:15px;

}

/* texto */

p{

line-height:1.6;

}