/*
body {
  background-image: url("assets/background2.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
*/


body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("media_badness/background2.jpg");
  background-size: cover;
  z-index: -1;
}
body {
  padding-bottom: 2000px;
  overflow: auto;
}


h1 {
  color: #bb2cca;
  font-family: Futura, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 50pt ;
  margin: 0;
}

h2 {
  color: #bb2cca;
  font-family: Futura, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 40pt ;
  margin: 0;
}

p {
  color: #ddfca1;
  font-family: Futura, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20pt;
}

a{
  color: #ddfca1;
  font-family: Futura, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12pt;
  font-weight: bold;
}

.button:hover{
  filter: blur(2px);
  transform: scale(1.2);
}

figcaption{
  background-color: #0d411f;
  text-align: center;
  margin-top: 5px;
  padding: 2px;
  width:fit-content;
  color: #ddfca1;
  font-family: Futura, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12pt;
  font-style: italic;
}

.header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  min-width:90%;
  height: 160px;
  padding:20px 5% 0px 5%;
  position: sticky;
  top:0px;
}

.logo{
  width:359px;
  height:160px;
  align-self: flex-start;
}

.wordmark{
  height: 160px;
  width: 100%;
  position: center;
  transition: blur .2s;
  object-fit:contain;
}

/*
@media(max-width: 980px){
  .header{
    flex-direction: column;
    width: fit-content;
    height: fit-content;
    position: sticky;
    min-width:max-content;
    max-width: max-content;
    top:0px;
  }
}
*/

@media(max-width: 980px){
  .header{
    flex-direction: column;
    min-width: 90%;
    height: auto;
    align-items: center;
    position: static;
    overflow: visible;
    padding: 5%;
  }
}

@media(max-width: 980px){
  .logo{
    max-width: inherit;
    height:fit-content;
    align-self: center;
    top:0;
  }
}

@media(max-width: 980px){
  .wordmark{
    width: 100%;
    height:fit-content;
    align-self: center;
  }
}

.wordmark_link:hover{
  filter: blur(5px);
}

.header>a{
  width:fit-content;
  height: fit-content;
  padding:10px;
  overflow: visible;
  text-align: center;
  font-size: 20pt;
  overflow: visible;
}

.main{
display: flex;
flex-direction: column;
position: fixed;
top:0;
left:0;
height: -moz-calc(100% - 60px);
    height: -webkit-calc(100% - 60px);
    height: -o-calc(100% - 60px);
    height: calc(100% - 60px);
width:100vw;
overflow: hidden;
}

/*
@media(max-width: 980px){
  .main{
    flex-direction: row;
  }
}
*/

@media(max-width: 980px){
  .main{
    flex-direction: column;
    overflow: hidden;
    position:static;
    height:fit-content;

  }
}

.content{
  display:flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  max-width: 100vw;
  flex-wrap: nowrap;
  position:relative;
  height: -moz-calc(100% - 270px);
  height: -webkit-calc(100% - 270px);
  height: -o-calc(100% - 270px);
  height: calc(100% - 270px);
  overflow-x: auto;
  overflow-y:hidden;
  white-space: nowrap;
  
}

.content::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.content {
-ms-overflow-style: none;  /* IE and Edge */
scrollbar-width: none;  /* Firefox */
}

@media(max-width: 980px){
  .content{
    height: -moz-calc(100% - 35px);
    height: -webkit-calc(100% - 35px);
    height: -o-calc(100% - 35px);
    height: calc(100% - 35px);
    overflow-x: hidden;
    overflow-y: visible;
    flex-wrap: wrap;
  }
}


.pic{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height:  80%;
  min-width:fit-content;
  text-align: center;
  transition: transform .2s;
  overflow: hidden;
}

.pic:hover{
  transform: scale(1.1);
}


@media(max-width:980){
  .pic{
    width: 75%;
    height:auto;
    max-height: 500px;
  }
}

.pic > img{
  object-fit: cover;
  max-height: 90%;
  max-width: 90%;
}

.pic> a{
  height: inherit;
  width: fit-content;
}

.orchid{
  max-height: 90%;
  max-width: 90%;
}

@media(max-width:980){
  .pic>a{
    width: 75%;
    height:fit-content;
  }
}

.footer{
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  height: fit-content;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
}

.footer > div{
  margin: 10px;
  padding: 0px 10px;
}

.poem{
  position:relative;
  background-color: #0d411fbe;
  height: 90%;
  max-width: 100%;
  padding: 15px;
  line-height: 2;
  margin:20px;
  overflow-y: scroll;
}



.scrollbuttons:hover{
  filter: blur(2px);
  transform: scale(1.2);
}

@media(max-width:980px){
  .scrollcontainer{
    display: none !important;
  }
}

.scrollcontainer{
  display: flex;
  position: absolute;
  bottom: 0px;
  left: 33vw;
  width: 33vw;
  height: 61px;
  justify-content:space-between;
}
