html {
  min-height: 100%;
  margin: 0;
  padding-bottom: 0;
}

body {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  animation: bgswap 2s infinite step-end;
  color: #212D72;
  font-family: 'Lucida Light';
  padding: 70px 50px 50px 50px;
  min-height: 100vh;
  box-sizing: border-box;
}
@keyframes bgswap {
  0%  { background-image: url('mpbg1.png'); }
  50% { background-image: url('mpbg2.png'); }
}

p {
  text-align: justify;
}

h5 {margin-bottom: 0;}
h1 {margin-top: 0}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Didot';
}

ul {
  padding-left: 20px;
}

mark {
  background-color: black;
  color: white;
  z-index: 900;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/* About */
.abcontent {
  display: flex;
  width: 100%;
  justify-content: center;
}

.abtextout {
  background-color: #968EBE;
  display: flex;
  flex-direction: column;
  border: 1px solid #212D72;
  outline: 2px solid #968EBE;
  outline-offset: 0;
  box-shadow: 0 0 0 3px #212D72;
  padding: 10px;
  position: relative;
  margin: 20px 50px 20px 0;
}
.abtextin {
    border: 1px solid #212D72;
    outline: 2px solid #968EBE;
    outline-offset: 0;
    box-shadow: 0 0 0 3px #212D72;
    padding: 0 10px 10px 10px;
    position: relative;
    flex: 1;
    color: white;
  }

/* Writing */

/* Not Found */
  .main {
  height: 70vh;
  background-color: #968EBE;
  display: flex;
  flex-direction: column;
  border: 1px solid #212D72;
  outline: 2px solid #968EBE;
  outline-offset: 0;
  box-shadow: 0 0 0 3px #212D72;
  padding: 20px;
  position: relative;
}
  .introduction {
    background-image: url(Notfound.jpeg);
    background-size: cover;
    background-position: center;
    border: 1px solid #212D72;
    outline: 2px solid #968EBE;
    outline-offset: 0;
    box-shadow: 0 0 0 3px #212D72;
    padding: 100px;
    position: relative;
    flex: 1;
    color: white;
  }











