*{
        margin: 0;
        padding: 0;
    }

    body{
        background-color: #FCF1C0;
        font-family: higu;
        font-size: 2.5vw;
    }

    @font-face {
        font-family: higu;
        src: url(/fonts/sazanami-gothic.ttf);
    }

    h1{
        margin: 0;
        background-color: pink;
        color: #FCF1C0;
        text-shadow:-1.5px -1.5px 0 #000, 1.5px -1.5px 0 #000, -1.5px 1.5px 0 #000, 1.5px 1.5px 0 #000;
        font-size: 5vw;
    }

    p{
        margin: 1%;
    }

    #mid{
        display: block;
        margin: auto;
        width: 100%;
        height: auto;
    }

    hr{
        border: 2px dotted pink;
        border-bottom: none;
    }

    b{
        color: pink;
        text-shadow:-1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    }

     a, a:visited{
    text-decoration: none;
    color: blue;
    transition: ease-in-out 0.6s;
}

a:hover{
    text-decoration: none;
    color: blue;
}

.table_component {
    overflow: auto;
    width: 90%;
    margin: auto;
    margin-top: 1%;
}

.table_component table {
    border: 1px solid #dededf;
    height: 100%;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 1px;
    text-align: left;
}

.table_component caption {
    caption-side: top;
    text-align: left;
}

.table_component th {
    border: 1px solid rgb(230, 135, 151);
    background-color: pink;
    color: #FCF1C0;
    text-shadow:-1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    padding: 5px;
    font-size: 3vw;
}

.table_component td {
    border: 1px solid rgb(230, 135, 151);
    background-color: #ffffff;
    color: #000000;
    padding: 5px;
}

#inner{
  float: left;
  width: 40%;
  margin-left: 1%;
  margin-right: 1%;
  border: 4px ridge pink;
}

@media only screen and (max-width: 640px) {
    body{
        font-size: 5vw;
    }

    h1{
        font-size: 8vw;
    }
}