html body{
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #5e7781
}

html{
  overflow-y: overlay;
}

@font-face {
  font-family: 'raftwork';
  font-style: normal;
  src: url('raftwork.otf') format('opentype');
}
@font-face{
    font-family:"helvetica";
    src:url("https://candyfonts.com/wp-data/2018/10/26/11538/HELR45W.ttf") format("woff"),
    url("https://candyfonts.com/wp-data/2018/10/26/11538/HELR45W.ttf") format("opentype"),
    url("https://candyfonts.com/wp-data/2018/10/26/11538/HELR45W.ttf") format("truetype");
    font-stretch: normal
}
header a{
  font-family: "helvetica";
  color: white;
  font-weight: 900;
  font-stretch: normal}
p{
  font-family: "helvetica";
  color: white;
  font-weight: 600;
  font-stretch: normal;
  font-size: 16pt;
  line-height: 190%;
  text-align: justify;}

body{
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  background-image: url("/images/boysdontcry/bkg2.png");
  background-position: center;
  background-repeat: repeat-y;
  background-size: cover}
.page{
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
}

header{
  display: flex;
  flex-direction: row;
  height: 13vh;
  align-items: center;
  justify-content: center;
  align-content: center;
}
  .buttonbar{
    display: flex;
    flex-direction: row;
    height: 13vh;
    width: 40%;
    justify-content: space-between;
    align-items: center;
    align-content: center;
  }  
  .headerbuttons {
    background-color: black;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 10pt;
    cursor: pointer;
    border-radius: 90%;
}
  header a:hover{
  background-color: white;
  color: black
}

main{
  display: flex;
  flex-direction: column;
  height: 87vh;
  align-items: center;
  align-content: center;
  justify-content: center;
}  
  .logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 60%;
  }  
  .logo img{
    display: block;
    width: 100%;
    height: 100%;
    }

.photobar{
  display: flex;
  min-height: 40vh;
  width: 100%;
  background-image: url("images/boysdontcry/bwbar.png");
  background-position: center;
  background-repeat: repeat-x;
  background-size: contain
}
.bdc-about{
  display: flex;
  height: 60vh;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.about-text{
  display: flex;
  width: 80%;
  height: 80%;
}
.about-text a{
  color: white;
  background-color: black;
  text-decoration: none
}
.about-text a:hover{
  background-color: white;
  color: black;
  text-decoration: underline
}

.invertmobile{
  display: flex;
  min-height: 20vh;
  width: 100%;
  background-image: url("images/boysdontcry/bwbar-invert.png");
  background-position: center;
  background-repeat: repeat-x;
  background-size: cover;
}

/* for phones */
@media (max-width: 768px){
  .buttonbar{
    width: 90%
  }  
  .headerbuttons{
    font-size: 7pt;
  }
  .logo{
    width: 80%
  }  

  p{
    font-size: 10.5pt;
  }
  .photobar{
    min-height: 20vh;
     background-size: cover}
  }


/* for large screens */
@media (min-width: 768px) {
  .invertmobile {
    display: none;
  }
}





  