html{
    height: 100%;
}

body{
    font-family: sans-serif;
    height: 100%;
    margin: 0;
    text-align: left;
    background-color: white;
    color: black;
}

header{
    position: fixed;
    display: flex;
    top: 0;
    z-index: 19;
    width: 100%;
    height: 50px;
    background-color: #38b48b;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    box-sizing: border-box;
}

.header_title a{
    margin: 0;
    font-family: serif;
    align-items: center;
    font-size: 32px;
    color: #e6b422;
    filter: drop-shadow(0 0 4px white);
    line-height: 1;
    text-decoration: none;
}

header ul{
    display: flex;
    list-style: none;
    align-items: center;
    height: 100%;
    gap: 30px;
    margin: 0;
}

.linksyu a{
    text-decoration: none;
    font-size: 20px;
    font-family: serif;
    line-height: 1;
    display: block;
    padding: 8px 15px;
    margin: 0 7px;
    border-left: 1px solid black;
    border-right: 1px solid black;
    color: white;
}

.linksyu a:hover{
    color: #e6b422;
    filter: drop-shadow(0 0 4px #e6b422);
    font-size: 23px;
}

.main{
    margin-top: 50px;
    padding: 1px;
    background-image: url(../img/station.png);
    background-size: cover;
    min-height: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.news_box{
    margin: 40px auto;
    padding: 15px;
    width: 50%;
    background-color: #e9dfe5;
    border: 20px groove gray;
    border-radius: 45px;
}

.news_box h2{
    font-size: 33px;
    margin: 10px;
}

.news_box h3{
    text-align: center;
    font-size: 40px;
    font-family: serif;
    padding: 10px 0;
    margin: 0;
}

#title {
    width: fit-content;
    padding-left: 45px;
    padding-right: 45px;
    border-bottom: 15px groove white;
    margin: auto;
}

.news_content{
    width: 80%;
    margin: auto;
}

.news_content p{
  font-size: 20px;
  white-space: pre-wrap;
}

.back{
    margin: 40px auto;
    display: inline-block;
    background-color: white;
    padding: 0;
    border: 10px solid white;
    border-radius: 45px;
}

.back a{
    text-decoration: none;
    display: block;
    color: black;
    font-size: 45px;
    margin: 0;
}

.back a:hover{
    color: #89c3eb;
}

footer{
    height: 30px;
    background-color: #9d5b8b;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p{
    margin: 0 20px;
    font-size: 17px;
    color: white;
}