html{
    scroll-behavior: smooth;
}

body{
    background-color: #FF4B52;
    font-family:'Lato';
    background-image:url('BOJ_background.png');
    background-size:cover;
    background-attachment: fixed;
}

img{
    border: none;
    display: block;
    margin: auto;
}

.main_container{
    text-align: center;
    position:relative;
    width: 70%;
    top: 1em;
    height: 100%;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1em;
    margin-top:-1em;
    color:white;
}

.main_container .logo{
    display: flex;
    flex-direction: row;
    gap: 2em;
}

.game_sheet{
    gap: 1em;
}

.game_links{
    display: flex;
    align-self: flex-start;
    font-size: 1.25em;
    white-space: pre;
}

.games_title{
    font-size:2em;
    display: flex;
    align-self:flex-start;
    font-size: 2em;
}

.main_container .games{
    display:flex;
    flex-direction: row;
    gap: 2em;
    font-size: 2em;
    align-self: flex-start;
}

.main_container .games .des{
    display:flex;
    flex-direction: column;
    text-align: left;
    gap: .5em;
    width: 650px;
}

.about{
    display:flex;
    flex-direction: row;
    text-align: left;
    gap:2em;
    font-size: 2em;
    align-self:center;
    width: 100%;
    padding-bottom:4em;
}

.main_container .about .about_des{
    display:block;
    flex-direction:column;
}


.coming_soon{
    position: relative;
    width: 100px;
    height: 100px;
    align-self:flex-start;
    top:10%;
    left:-50px;
    rotate: -15deg;
}

.top_bump{
    position:relative;
    top:10%;
}

a:link, a:visited{
    text-decoration: none;
    color:white;
}

a:hover{
    text-decoration: underline;
}

.top_banner{
    background-color:#280077;
    border-bottom: 1px dashed white;
    position:fixed;
    top:0px;
    left:0px;
    width: 100%;
    z-index:99;
    height: 3em;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.top_banner_item{
    position:relative;
    color: white;
    width: 10%;
    height: 2em;
    display:flex;
    text-align: center;
    align-items: center;  
}

.top_logo{
    position:fixed;
    top:10px;
    left: 10px;
    z-index: 999;
}


/* LATO FONT STUFF */
.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  
