/* ===================================================== */
/* ======================= BODY ======================== */
/* ===================================================== */

body {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  
  background-image: url(../images/purple-trees.jpg);
  background-position: center;
  background-size: 100%;
  background-position-y: top;
}

h1 {
  font-size: 4em;
  color: rgb(255, 255, 255);
  text-shadow: #000000 0px 0px 10px;
  margin: 1em auto;
}

/*  */
article {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-items: center;
  align-items: center;
  justify-content:space-around;

  padding: 2em;
}

section {
  background-image: url(../images/oh-dear-background.png);
  background-position: center;
  background-attachment: fixed;
  background-size: 50%;
  background-position-y: top;

  box-shadow: 0px 0px 10px #ffbb00;
  border: 5px solid #ffffff ;
  display: flex;
  align-items: center;
  flex-direction: column;

  align-self: stretch;
  min-height: 15em;

  width: 25%;

  font-size: 1em;
}


h2 {
  text-shadow: -2px 2px 4px #ff0000;
  margin: 0.5em 0;
        
  font-size: 2em; 
}
p {
  padding: 10px;
  width: 80%;
  text-shadow: -2px 2px 4px #ff8800;
  text-align: justify;
  line-height: 130%;

  background-color: rgba(0, 162, 255, 0.493);
}
.image {
  width: 80%;
  padding: 10px;
  background-color: rgba(132, 0, 255, 0.493);
}
img {
  width: 100%;
  -webkit-user-drag: none;
}
