:root {
    --themeColor: #bd745b; /* global scope */
    --shadowColor: #00000063; /* global scope */
    --accentColor: #7e7e7e; /* global scope */
}

img {
    -webkit-filter: drop-shadow(0.7rem 0.4rem 0.5rem var(--shadowColor));
    filter: drop-shadow(0.7rem 0.4rem 0.5rem var(--shadowColor));
    width: 60vw;
    pointer-events: none;
 
}
h1,
h2 {
    color: var(--themeColor);
    filter: drop-shadow(0.7rem 0.4rem 0.5rem var(--shadowColor));
    pointer-events: none;
}
h1 {
    font-size: 6rem;
    
}
h2 {
    font-size: 3rem;
}
.behind {
    position: fixed;
    inset: 0;
    /*position: fixed;
	z-index: -999;
	top: 0px;
	left: 0px;
    width: 100%;*/
}

#particles-js {
    pointer-events: auto;
}
footer {
    position: fixed;
    /* top: calc(50vh - 5rem); */
    background-color: var(--shadowColor);
    bottom: 0px;
    width: 100%;
}
div iframe{
  z-index: 1000;
  display: block;
  position: relative;
  margin: auto;
}
#portfolioLinks{
    padding: 1rem;
  z-index: 1000;
  display: block;
  position: relative;
  margin: auto;
}
h3{
    text-decoration: none;
    color: var(--themeColor);
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}
a h3:hover {
   color: white
}