@font-face {
    font-family: 'MainFont'; /*a name to be used later*/
    src: url('assets/Oshidashi-M-Gothic-TT.ttf'); /*URL to font*/
}

body{
    /*font-family: "MainFont";*/
    font-family: "ＭＳ Ｐゴシック", Osaka;
    background-color: black;
    color: white;
    font-size: 16px;
}

header{
    width: 50%;
    height: 64px;
    margin: auto;
    background-image: url("assets/header_bg.png");
}

nav{
    width: 12.5%;
    min-height: 640px;
    float: left;
    margin-left: 25%;
    border-right: 1px solid white;
}

main{
    width: 37.5%;
    min-height: 640px;
    float: left;
}

footer{
    float: none;
    width: 50%;
    margin: auto;
    text-align: center;
}

a{
    text-decoration: none;
    color: mediumslateblue;
    background-color: transparent;
}

a:hover{
  color: white;  
  background-color: blue;
}

nav a{
    display: block;
    margin-left: 25%;
}

h1, h2{
    font-size: 16px;
    margin: 0;
}

h1{
    color: yellow;
}

h2{
    color: palegreen;
}

.yume{
  position: fixed;
  left: 0;
  bottom: 0;
  color: rgb(6, 6, 6);  
  background-color: transparent;
}

.yume:hover{
  color: rgb(6, 6, 6);  
  background-color: transparent;
}



