

* {
  font-family: 'Work Sans', sans-serif;
  color: #191414;
  /*background-color: #f8f8f8;*/
}


header {
  min-height: 45px;
  border-bottom: 1px solid #eee;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;    
  display: flex;
  flex-direction: column;
}

.footer {
  min-height: 45px;
  margin-top: auto;
  padding-left: 60px;
  padding-right: 60px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

h1 {
  font-size: 68px;
  font-weight: 700;
}

h2 {
  font-size: 30px;
  font-weight: 600;
}

::selection {
  background: #c8ff92;
  color: #191414;
}

.main {
  margin-left: 60px;
  margin-right: 60px;
}

.text-area {
  display: inline-block;
}

.pic-area {
  display: inline-block;
}

.pic-area > img {
  display: none;
  max-width: 500px;
}

.joanne-pola {
  display: none;
  max-width: 300px;
  position: absolute;
  left: 10%;
  bottom: 40%;
}

.joanne:hover + .joanne-pola {
  display: block;
}

.albus-pola {
  display: none;
  max-width: 450px;
  position: absolute;
  right: 30%;
  bottom: 35%;
}

.albus:hover + .albus-pola {
  display: block;
}

.add-margin-top {
  margin-top: 65px;
}

span.outlined1  {
  color: transparent;
  -webkit-text-stroke: 1px black;
  transition: -webkit-text-stroke-color 0.3s ease;
  font-family: Rubik, sans-serif;
  font-weight: 700;
}

span.outlined2  {
  color: transparent;
  font-family: Rubik, sans-serif;
  -webkit-text-stroke: 2px black;
  transition: -webkit-text-stroke-color 0.3s ease;
  
}

span.outlined1:hover, span.outlined2:hover {
  -webkit-text-stroke-color: #191414;
  color: white;
   text-shadow:
       3px 3px 0 #726eff,
     -1px -1px 0 #726eff,  
      1px -1px 0 #726eff,
      -1px 1px 0 #726eff,
       1px 1px 0 #726eff;
  cursor: default;
}



