.scrollspot{
  scroll-margin-top: 70px;
}

.welcome-message{
  text-align: right;
  position:absolute;
  top:15%;
  left:50%;
  font-size:8vw;
  color:white;
  text-shadow: 2px 2px 2px 5px rgba(0,0,0,0.3), 5px 5px 70px rgba(255,255,255,0.5);
  transform:translateX(-50%) translateZ(-0.6px) scale(1.1);
  width:auto;
}
    .line2{
      font-size:5vw;
    }

.welcome::before{
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  background:url('/images/lighthouse_background.png') top left;
  background-size:cover;
  transform:translateZ(-1px) scale(2.0);
  filter:blur(1px);
}
.welcome::after{
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  background:url('/images/lighthouse_foreground.png') top left;
  background-size: cover;
  transform:translateZ(-0.4px) scale(1.3);

}

.subsection{
  max-width:900px;
  margin:auto;
  padding:20px;
  box-sizing: border-box;
  border-bottom:1px solid #222;
  display:flex;
  align-items: center;
  flex-direction: row;
}

    .subsectionimg{
      width:300px;
      height:180px;
      border-radius: 100%;
      box-sizing: border-box;
      vertical-align: middle;
      box-shadow: 1px 2px 8px 2px rgba(0,0,0,0.75);
      -webkit-box-shadow: 1px 2px 8px 2px rgba(0,0,0,0.75);
      -moz-box-shadow: 1px 2px 8px 2px rgba(0,0,0,0.75);
    }
        .subsectionimg.box{
          border-radius:10px;
        }
    .subsectiontext{
      vertical-align: middle;
      margin:10px;
      padding:20px;
      box-sizing: border-box;
      width:calc(100% - 330px);
    }
        .subsectiontext.right{
          text-align: right;
        }


@media only screen and (max-width:500px) {
  .navbuttons{
    display:none;
  }
  .subsection{
    flex-direction: column;
  }
  .subsectionimg{
    order:1;
    max-width:300px;
    width:100%;
  }
  .subsectiontext{
    order:2;
    width:100%;
  }
}