/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


/* center the wHOLE PAAAAAGE!!! */

.centered {
    position:relative;
    max-width:99%;
    left:50%;
    transform:translateX(-50%);
    white-space: normal;
    overflow: hidden;
    overflow-wrap: break-word;
    /* background-color:red; */
    padding-left: 15px;
    padding-right: 15px;
    padding-top:15px;
}

/* center images */

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/* background img stuff */

body {
  background-image: url("images/bgimage.jpg");
background-repeat: no-repeat;
  background-position: center center;
 -webkit-background-size: cover;
 -moz-background-size: cover;
 -o-background-size: cover;
  background-size: cover;
  color: white;
  height: 100vh;
  background-attachment: fixed;
}

/* mobile support */
@media (max-width: 1554px) and (min-width:1255px) {
  


.centerwindow {
  width:700px;  
}

h1 { 
  font-family: NewRodinEB;
  color: #fb85ff;
  text-shadow: 2px 2px black;
  font-size:28px;
  padding-left:10px;
  padding-right:10px;
}

p { 
  font-family: NewRodinB;
  color: #85fff9;
  text-shadow: 2px 2px black;
  font-size:16px;
  padding-left:10px;
  padding-right:10px;
}

}

@media (max-width: 1255px) {

.sidebar {
    height:245px;
    margin-bottom: 0px;
    display:block;
}

.centerwindow {
  max-width:100%;  
}

}


/* font import */

@font-face {
    font-family: 'NewRodinEB';
    src: url('font/FOTNewRodin%20Pro%20EB.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NewRodinB';
    src: url('font/FOTNewRodin%20Pro%20B.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

hr {
  border: 2px solid #85FFF9;
  margin-left: 25px;
  margin-right: 30px;
}

/* link color */

a:link { color: #4EFF33; }

a:visited { color: #4EFF33; }

p:visited { color: #4EFF33; }