body {
    background-color: black;
    padding: 2vw;
    display: flex;
}

#img {
    max-width: 32vw;
    margin-right: 20px;
    height: 46vw;
    display: inline-block;
    box-sizing: border-box;
}
#page {
    min-width: 32vw;
    max-width: 32vw;
    width: 100%;
    display: inline-block;
    height: 46vw;
    background: rgb(244, 244, 248);
    font-family: news;
    padding: 20px;
    box-sizing: border-box;
    text-align: justify;
    overflow-x: none;
    overflow-y: scroll;
    
}
::-webkit-scrollbar {
    background: rgb(244, 244, 248);
}
::-webkit-scrollbar-thumb {
    background: black;
}
::-webkit-scrollbar-track {
    background: rgb(244, 244, 248);
}
#nav {
    margin: 10px;
    padding: 10px;
}
#nav a, #nav p {
    color: white;
}

h1, p {
    margin: 0;
}
h1 {
    text-align: center;
    font-size: 1.6em;
    font-weight: lighter;
}
#page p {
    text-indent: 20px;
}

@font-face {
    font-family: "news"; 
    src: url("OldNewspaperTypes.ttf") format("truetype");
}