/* FONTS... */
  @font-face {
    font-family: Nunito;
    src: url('https://aveyond.neocities.org/core/fonts/Nunito-Regular.ttf');
  }
  
  @font-face {
    font-family: Nunito;
    src: url('https://aveyond.neocities.org/core/fonts/Nunito-Bold.ttf');
    font-weight: bold;
  }
  
  @font-face {
    font-family: Nunito;
    src: url('https://aveyond.neocities.org/core/fonts/Nunito-Italic.ttf');
    font-style: italic;
  }
  
  @font-face {
    font-family: Nunito;
    src: url('https://aveyond.neocities.org/core/fonts/Nunito-BoldItalic.ttf');
    font-style: italic;
    font-weight: bold;
  }

/* FULL SITE */
body {
  font-family: 'Nunito', sans-serif;
  background: #57658e;
}

.container {
  width: 90%;
  margin: auto;
  padding-top: 20px;
}

a {
    color: #5e5d9d;
    font-weight: bold;
    text-decoration: none;
}
    
a:hover {
    color: #5e5d9d;
    font-weight: bold;
    text-decoration: underline;
}

#main {
  display: flex;
  width: 100%;
  margin-top: 20px;
  padding: 5px;
  background: #fff;
  border-style: double;
  border-width: 4px;
  border-color: #8d96d8;
}

#content60 {flex: 60%; padding: 5px 20px 5px 20px;}
#content70 {flex: 70%; padding: 5px 20px 5px 20px;}
#content75 {flex: 75%; padding: 5px 20px 5px 20px;}
#content85 {flex: 85%; padding: 5px 20px 5px 20px;}
#content90 {flex: 90%; padding: 5px 20px 5px 20px;}

.row {display: flex;}
.column {display: flex; flex-direction: column;}
.col20 {float: left; width: 20%;}
.col25 {float: left; width: 25%;}
.col30 {float: left; width: 30%;}
.col50 {float: left; width: 50%;}
.col70 {float: left; width: 70%;}
.col75 {float: left; width: 75%;}
.col80 {float: left; width: 80%;}

.centered {display: flex; justify-content: center; align-items: center;}
.spaced-between {justify-content: space-between;}
.spaced-evenly {justify-content: space-evenly;}
.spaced-around {justify-content: space-around;}

.box {
    color: #000;
    background-color: #d9dcf2;
    border: 2px #8d96d8 solid;
    padding: 5px 10px 5px 10px;
}

.frontpage {
  width: 70%;
  height: 175px;
}

.button {
    border: none;
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.button-game {
    color: #000;
    background-color: #b4b8e4;
    border-radius: 2px;
}
    
.button-game:hover {
    color: #000;
    background-color: #d9dcf2;
}

.rmxpico {width: 24px; height: 24px;}

/* MAIN NAVIGATION */
#navbar {
  flex: 15%;
  border-right: 1px #5e5d9d solid;
  padding: 5px;
}

.navbar-row {display: flex; padding: 10px; justify-content: space-between; align-items: center;}
.navbar-col {display: flex; flex-direction: column;}
.navbar-title {
  display: flex;
  padding: 10px;
  justify-content: space-between;
  align-items: center;
  width: 60%;
}

#navbar a {border-bottom: 2px solid #d9dcf2;}
#navbar a:last-child {border-bottom: 2px solid #fff;}

#navbar a:hover {
  text-decoration: none;
  background: #d9dcf2;
  color: #000;
}

/* OPTIONAL SIDEBAR */
.sidebar-row {
  display: flex;
}
#sidebar {
  flex: 30%;
  border-left: 1px #5e5d9d dashed;
  padding: 5px;
}

/* HEADER NAVIGATION */
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-icon {
  width: 32px;
  padding-bottom: 10px;
}

#header a {
  text-align: center;
  text-decoration: none;
  color: #fff;
  text-shadow: 0 0 3px #000, 0 0 3px #000;
}

#header a:hover {
  text-decoration: underline;
  color: #fff;
}

/* BLOG */
#blognav {
  flex: 15%;
  border-left: 2px #5e5d9d dashed;
  padding: 5px;
}

.blognav-border a {border-bottom: 2px solid #d9dcf2;}
.blognav-border a:hover {
  text-decoration: none;
  background: #d9dcf2;
  color: #000;
}

.blognav-col {display: flex; flex-direction: column;}

/* FOOTER */
#footer {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 20px;
}
#footer a {color: #fff; text-decoration: none;}
#footer a:hover {color: #fff; text-decoration: underline;}