@import url('https://fonts.googleapis.com/css2?family=Ewert&family=Sancreek&display=swap');

body {
  background-image: url("../images/marieantbackground.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 7%;

  color: white;
  font-family: Georgia, serif;
}

html, body {
  height: 100%;
  margin: 0;
  overflow: hidden; /* prevents scrolling */
}

h1 {
  font-family: "Sancreek", system-ui;
  font-size: 70px; /*laptops and desktops */
  color: white;
  margin-bottom: 8px;
  position: relative;   /* needed for z-index to work */
  z-index: 10;   
}

.content {
  position: relative;
  max-width: 350px;   /* makes the text column narrower */
  margin-left: 3vw;
  margin-right: auto;
  text-align: center;
  z-index: 5;
  padding: 10px;
  border-width:8px;
  border-style:solid;
  top: 20%;
  left: 0.1%;
   }


.blinkies-box {
    position: relative;
    max-width: 350px;   /* makes the text column narrower */
    margin-left: 3vw;
    margin-right: auto;
    text-align: center;
    z-index: 5;
    border-style: inset;
    border-width: 8px;
    border-color: lightpink;
    padding: 10px;
    top: 20%;
    left: 0.1%;
}

.light-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 210%;        /* slightly larger than window */
  height: auto;
  
  opacity: 0.2;

  z-index: 2;
  pointer-events: none;
}


.glitter-text-aboutme {
  position: absolute;
  top: 0.5%;
  left: 1%;
  width: 30vw; /* adjust size */
  height: auto;
  pointer-events: none; /* click through */
  z-index: 10; /* above header */
}


