html {
  position: fixed;
  height: 100%;
  width: 100%;
  bottom: 0%;
  right: 0%;


}

body{
  width: 100%;
  height: 100%;
  background-color: rgb(136, 132, 125);
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.maincontent {

  position: absolute;
  height: 100%;
  width: 100%;
  right: 0%;
  bottom: 0%;
  overflow-y: scroll;
  padding: 0em;
  background-color: rgba(220, 211, 211, 0.9);
  display: flex;              /* ✅ */
  justify-content: center;    /* horizontal center */
  align-items: center;        /* vertical center */
}
.page {
  margin-top: 15%;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 18%;
}



.me{
  float:right;
  max-width: 20%;
  border-radius: 50%;
  border-color: var(--darkpurple);;
  padding: 2em;

}


h1,
h2 {
  color: rgb(42, 97, 199);
}
.header {
  position: fixed;
  width: 100%;
  height: 7%;
  top: 0%;
  z-index: 1;
  display: flex;              /* ✅ */
  justify-content: center;    /* horizontal center */
  align-items: center;        /* vertical center */

  background: linear-gradient(
    rgba(243, 236, 236, 0.9),
    rgba(243, 236, 236, 0.6)
  );
  background: -webkit-linear-gradient(
    rgba(243, 236, 236, 0.9),
    rgba(243, 236, 236, 0.6)
  );
    -webkit-box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.44);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.44);
  box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.44);
}
.headertitle {
  color: rgba(25, 98, 194, 0.356);
font-weight: bold;
font-size:xx-large;
  z-index: 1;
  font-family: "Brush Script MT", "Lucida Console", Monaco, monospace;
}


.footer {
 position: fixed;
 color: black;
  width: 100%;
  height: 7%;
  bottom: 0%;
  z-index: 1;

  display: flex;              /* ✅ */
  justify-content: center;    /* horizontal center */
  align-items: center;        /* vertical center */


  background: linear-gradient(
    rgba(243, 236, 236, 0.9),
    rgba(243, 236, 236, 0.6)
  );
  background: -webkit-linear-gradient(
    rgba(243, 236, 236, 0.9),
    rgba(243, 236, 236, 0.6)
  );
  -webkit-box-shadow: 0px -5px 3px -2px rgba(0, 0, 0, 0.44);
  -moz-box-shadow: 0px -5px 3px -2px rgba(0, 0, 0, 0.44);
  box-shadow: 0px -5px 3px -2px rgba(0, 0, 0, 0.44);
}



p {
  padding-top: 1em;
  padding-right: 2em;
  padding-bottom: 1em;
  padding-left: 2em;
  text-align: justify;
}




@media screen and (max-width: 800px) and (orientation: portrait) {
    .maincontent{
        height: 90%;
         padding-top: 2em;

    }
  .me{
  float:right;
  max-width: 80%;
  border-radius: 50%;
  border-color: var(--darkpurple);;
  padding: 2em;

}


}

