body{
    position: relative;
    font-family: 'Kanit', sans-serif;
    min-height: 100vh;
    margin: 0%;
    background-color: #222222;
    background-image: url(background.png);
    background-repeat: repeat-x;
}
.headerspace {
    min-height: 10vh;
}
header{
    max-height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    margin: 0;
    top: 0;
    left: 0;
    right: 0;
    background-color: #353535;
    box-shadow: 0px 0px 10px 5px #111111;
    border-bottom: 1px solid gray;
}
.header-con {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 12vh;
    min-width: 75vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: baseline;
    flex-flow: wrap;
}
.logo a {
    text-decoration: none;
}
.logofont {
    font-weight: bold;
    font-size: 2rem;
    color: white;
}
.logofontspan {
    padding-left: 1rem;
    margin-right: 2rem;
    font-size: 0.8rem;
    color: lightgray;
}
nav {
    display: flex;
}
nav a{
    color: lightblue;
    margin: 0rem 0.5rem;
    padding: 0rem 0.3rem;
    border-radius: 0.2rem;
    text-decoration: none;
}
nav a:hover{
    color: white;
    background-color: #303030;
    box-shadow: 0px 0px 3px 1px #222222;
}
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0rem 0rem;
    padding: 3rem 0rem;
}
article {
    display: flex;
    justify-content: center;
    min-width: 65vw;
    margin: 1rem 0.2rem;
    color: white;
    background-color: #353535;
    padding: 1rem 0.2rem;
    border-radius: 6px;
    border: 1px grey solid;
}
article h2 {
    margin-top: 0rem;
    padding: 0rem 0.3rem;
}
article a {
    color: lightblue;
    background-color: #454545;
    text-decoration: none;
    padding: 0rem 0.3rem;
    border-radius: 0.2rem;
    border: 1px solid #323232;
    box-shadow: 0px 0px 3px 1px #303030;
}
article a:hover {
    color: white;
    background-color: #303030;
    box-shadow: 0px 0px 3px 1px #222222;
}
.footer-con {
    position: absolute;
    display: flex;
    justify-content: center;
    margin: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #353535;
    border-top: 1px solid grey;
}
.footer-con a {
    color: lightblue;
    text-decoration: none;
    margin: 0.1rem;
    padding: 0rem 0.3rem;
    border-radius: 0.2rem;
}
.footer-con a:hover {
    color: white;
    background-color: #252525;
}
.article-txt {
    min-width: 60vw;
}