html {
  overflow-y: scroll;
/* solution to the "entire page going to the left by a little bit"
   issue that you were tearing your hair out over :3 */
}


/* BODY FONTS */
@font-face {
    font-family: 'Atkinson Hyperlegible Next';
    src: url('/fonts/AtkinsonHyperlegibleNext-Light.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Atkinson Hyperlegible Next';
    src: url('/fonts/AtkinsonHyperlegibleNext-Medium.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'Atkinson Hyperlegible Next';
    src: url('/fonts/AtkinsonHyperlegibleNext-LightItalic.ttf') format('truetype');
    font-style: italic;
}

@font-face {
    font-family: 'Atkinson Hyperlegible Next';
    src: url('/fonts/AtkinsonHyperlegibleNext-MediumItalic.ttf') format('truetype');
    font-style: italic;
    font-weight: bold;
}

/* HEADER FONTS */
@font-face {
  font-family: 'General Sans';
  src: url('/fonts/GeneralSans-Semibold.ttf') format('truetype');
  font-weight: bold;
}

@font-face {
  font-family: 'General Sans';
  src: url('/fonts/GeneralSans-SemiboldItalic.ttf') format('truetype');
  font-style: italic;
  font-weight: bold;
}

html {
  --accent-cyan: #80FFC4;
  --border-radius: 0.625rem;
  --default-gap: 0.625rem;
  --border-width: 0.125rem;
  --border-style: var(--border-width) solid var(--accent-cyan);
}

* {
  box-sizing: border-box;
}

body {
  cursor: auto;
  font-family: 'Atkinson Hyperlegible Next', sans-serif;
  margin: 0;
  background-color: #000000;
  /* you can delete the line below if you'd prefer to not use an image */
  background-size: 65px;
  color: #ffffff;
  background-image: url('https://cephri.neocities.org/images/tiletest2.png');
}


/* the "container" is what wraps your entire website */
/* if you want something (like the header) to be Wider than
the other elements, you will need to move that div outside
of the container */
.container {
    max-width: 1200px;
    /* this is the width of your layout! */
    /* if you change the above value, scroll to the bottom
and change the media query according to the comment! */
    margin: 0 auto;
    /* this centers the entire page */
}

/* the area below is for all links on your page
EXCEPT for the navigation */
.container a {
    color: #80FFC4;
    font-weight: bold;
    /* if you want to remove the underline
you can add a line below here that says:
text-decoration:none; */
}

.header {
    width: 100%;
    background-color: #5e4e8c;
    /* header color here! */
    height: 220px;
    /* this is only for a background image! */
    /* if you want to put images IN the header, 
you can add them directly to the <div id="header"></div> element! */
    background-image: url('https://cephri.neocities.org/images/banner_hue.png');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    border: var(--border-style);
    margin-bottom:0.5rem;
}

.flexx {
    display: flex;
    flex-flow: row nowrap;
}

/* this colors BOTH sidebars
if you want to style them separately,
create styles for #leftSidebar and #rightSidebar */



/* this is the color of the main content area,
between the sidebars! */
main {
    background-color: #000000;
    padding: 30px;
    border-radius: var(--border-radius);
    border: var(--border-style);
    flex: 3;
}

.leftbar1 {
    display: flex;
    flex-flow: column nowrap;
    height: auto;
    position: relative;
    background-color: #000000;
    width: 240px;
    padding: 15px;
    font-size: smaller;
    margin-right:0.5rem;
    border-radius: var(--border-radius);
    border: var(--border-style);
}

.leftbar2 {
    height: auto;
    position: relative;
    background-color: #000000;
    width: 240px;
    padding: 15px;
    font-size: smaller;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
    border-radius: var(--border-radius);
    border: var(--border-style);
}

.leftbutton {
  width: 210px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.buttonpair {
  display: flex;
  flex-flow: column nowrap;
}

.rightbar {
    height: auto;
    position: relative;
    background-color: #000000;
    width: 240px;
    padding: 15px;
    font-size: smaller;
    margin-left: 0.5rem;
    border-radius: var(--border-radius);
    border: var(--border-style);
}

.sidebars-container {
    display: flex;
    flex-flow: column nowrap;
}

.border-image {
  border-radius: var(--border-radius);
  border: var(--border-style);
  border-color: #96DAFF;
}


/* what's this "order" stuff about??
allow me to explain!
if you're using both sidebars, the "order" value
tells the CSS the order in which to display them.
left sidebar is 1, content is 2, and right sidebar is 3! */

.footer {
  /* THIS IS THE FOOTER! */
  background-color: #000000;
  /* background color for footer */
  width: 100%;
  padding: 35px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
  font-weight: bold;
  color: #80FFC4;
  border-radius: var(--border-radius);
  border: var(--border-style);
  flex: 3;
  /* this centers the footer text */
}


h1 {
    font-family: 'General Sans', sans-serif;
    font-size: 36px;
    color: #C064FF;
}

h2 {
    font-family: 'General Sans', sans-serif;
    font-size: 26px;
    color: #817EFF;
}

h3 {
  font-family: 'General Sans', sans-serif;
  font-size: 20px;
  color: #96DAFF
}

strong {
    /* this styles bold text */
    color: #96DAFF;
}


.langtablewrap {
  border: 1px solid;
  border-color:  #96DAFF;
  border-spacing:0;
}
.langtable {
  padding: 5px;
  width: 100px;
  text-align: center;
  border: 1px solid;
  border-color:  #96DAFF;
  border-spacing:0;
  font-size: smaller;
}

.langtablesmall {
  padding: 5px;
  width: 60px;
  text-align: center;
  border: 1px solid;
  border-color:  #96DAFF;
  border-spacing: 0;
  font-size: smaller;
}

.desktopmessage {
  display: none;
}

.footer-text {
  padding-bottom: 1rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  
}

/* this is just a cool box, it's the darker colored one */
.box {
    background-color: #13092D;
    border: 1px solid #80FFC4;
    padding: 0.5rem;
}

.border-image {
  border-radius: var(--border-radius);
  border: var(--border-style);
  border-color: #96DAFF;
}

.ogyonmap {
  display: block;
}

#ogyonmap-mobile {
  display:block;
}

.ogyonmap-mobile {
  display: none;
}

ul {
  padding-right:10px;
  padding-left:15px;
}

#ogyonmap-mobile {
  display:none;
}

html {
  width: 100%;
}

body {
  width: 100%;
}

.center-elems {
  margin-left: auto;
  margin-right: auto;
}
/* media query! */

@media screen and (max-width: 850px) {
  .container {
    margin: 0.5rem;
    max-width: 850px;
    }
  .header {
    max-height: 150px;
  }
  
  .leftbar1, .leftbar2 {
    flex-direction: column;
    width: 100%;
    margin-right: 0;
  }
  
  .footer-buttons {
    display: flex;
    height: auto;
    overflow-x: scroll;
  }
  
  main {
    margin-top: 10px;
  }
  
  .leftbar2 {
    display: none;
  }
  
  .sidebars-container {
    display: flex;
    flex-direction: row;
    width: auto;
  }
  
  .buttonpair {
    display: flex;
    flex-flow: row nowrap;
    margin: auto;
  }
  
  .rightbar {
    width: 100%;
    margin-top: 0.5rem;
    margin-left: 0;
    margin-right: 0.5rem;
  }
  
  .desktopmessage {
    display: block;
  }
  
  .flexx {
    flex-direction: column;
  }
  
  
  .leftbutton {
    width: 100%;
    height: auto;
    flex: auto;
  }
}

@media screen and (max-width: 600px) {
  .header {
    max-height: 100px;
  }
  
  .ogyonmap {
    display: none;
  }
  
  #ogyonmap {
    display:none;
  }
  
  .ogyonmap-mobile {
    display: block;
  }
  
  #ogyonmap-mobile {
    display:block;
  }
  
}