/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

             /*--------my style here----------*/
*,
::before
::after{box-sizing:border-box;}  

main
header
footer{
    margin: 0 4em;
}

body{
    background-color: rgb(244, 244, 175);
    font-size: 1.25rem;
    font-family: "playfair display",Arial, Helvetica, sans-serif;
    line-height: 1.5;
    color:black;
    font-weight: 300;
    
}
header{
  font-family: "Belleza", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  color:black;
  padding: 15px;
  margin: 0;
  background-color: rgb(185, 140, 227);
  text-align: center;
}
 main{
   max-width:950px ;
   margin:0 auto;
 }
 h1 {
   font-size: 1.5em; 
   font-weight: 500;  
 }
 h2{
    font-size: 2.0rem;
    color: rgb(136, 30, 235);
    padding: 15px;
}
h3{
    font-size: 2.0rem;
    color: rgb(136, 30, 235);
    padding: 15px;
}

 img{
    max-width: 100%;
    max-height: auto;
 }
 h4{
    font-size: 2.0rem;
    color: rgb(136, 30, 235);
    padding: 15px;
 }

 p{
    font-size: 1.0em;
    padding: 15px 15px 15px 15px;
}
blockquote{
    font-size: 1.2em;
    padding-left: 15px;
    font-style: italic;
    font-weight: 100;
}
cite{
    font-size:1.4rem ;
}
footer p{
    max-width: 980px;
    margin: 0 auto;
    font-size: 1.0em;
    font-weight:100;
    padding-left: 10dvh;
    font-style: italic;
}


