@charset "utf-8";

* { box-sizing: border-box; }

/* body */
body
{
    margin: 0px;
    width: 100vw;
    overflow-x: hidden;
}

/* header */
header h1
{
    font-family: 'Times New Roman';
    font-size: 24px;
}

/* section */
section
{
    margin-bottom: 20px;
}

/* links */
a:link, a:visited
{
    border-bottom: 1px solid transparent;
    color: #000000;
    font-size: 23px;
    text-decoration: none;
}

a:hover, a:active
{
    border-bottom: 1px solid #000000;
}

