* {
  box-sizing: border-box;
}
html {
  background-color: #2F1735;
}
body {
  margin: 0px;
  color: white;
  font-family: 'Roboto Mono', monospace;
}
/*https://redstapler.co/pure-css-horizontal-scrolling-website-tutorial/*/
.outer-wrapper {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: auto; /*hidden*/
  scroll-snap-type: y proximity;
  position: absolute;
  /*hide scrollbar for firefox*/
  /* scrollbar-width: none; */
  /*hide scrollbar for IE family*/
  /* -ms-overflow-style: none; */
}
/*hide scrollbar for Chrome and Safari*/
/* ::-webkit-scrollbar {
  display:none;
} */
.outer-wrapper .slide {
  scroll-snap-align: start;;
}

.wrapper {
  display: flex;
  flex-direction: row;
  width: 400vw;
}
.slide {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.one {
  background: #2F1735;
}
.two {
  background: #3f1f47;
}
.picframeframe {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.picframe {
  background: black;
  width: 75vw;
  height: 75vh;
}
.picframe .tooltiptext {
  display: none;
  position: absolute;
  top: -1.5em;
  left: 0px;
}
.button {
  background: #ebdcef;
  padding: .5em 1em .5em 1em;
  margin: .5em;
  border-radius: .5em;
  cursor: pointer;
}
a { font-weight: bold }
a:link { 
  color: #5e2f6a;
}
.lightlink a:link {
  color: #ebdcef;
}
a:visited { color: #451452; }
a:hover { color: #c40df2; }
a:active { color: #c40df2; }
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.darktext {
  color: #2F1735;
}
#main {
  background-color: #3f1f47;
  height: 75vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#main p {
  margin: 1em;
}
#twoforlarry {
  background-image: url(/images/IMG_20180910_104042664_Edit.jpg);
  width: 90%;
  border-radius: 1em;
}
#social-media {
  background-color: #ebdcef;
  align-self: center;
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 95%;
  justify-content: center;
  padding: 10px;
  border-radius: 2em;
}
#social-media h3 {
  text-align: center;
  padding: 1em;
}
.soc-med-child {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.picframe img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#darkpurplearrow {
  width: 8em;
}
.st0{fill:#2F1734;}
@media only screen and (min-width: 900px) {
  /* For Desktop */
  .outer-wrapper {
    width: 100vh;
    height: 100vw;
    transform: rotate(-90deg) translateX(-100vh);
    transform-origin: top left;
    overflow-x: hidden; /*auto*/
  }
  .wrapper {
    transform: rotate(90deg) translateY(-100vh);
    transform-origin: top left;
  }
  #main {
    height: 75vh;
    width: 75vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #social-media {
    align-self: center;
    text-align: left;
    display: flex;
    flex-direction: row;
    width: 75%;
    justify-content: space-around;
    padding: 10px;
    border-radius: 2em;
  }
}