@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;500;700&display=swap');

body {
    font-family: 'Plus Jakarta Sans', Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eee;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 500;
}

p {
    font-weight: 300;
}

hr {
    margin: 0;
    border: 0;
    border-bottom: 5px dotted #eee;
    background-color: #fff;
}

#container {
    position: relative;
    width: 50vw;
    max-width: 800px;
    min-height: 100vh;
    margin: 0 auto 0 auto;
    padding: 0;
    background-color: #fff;
}

#header, #content {
    padding: 20px 50px 20px 50px;
}

#menu {
    margin: 0 0 10px 10px;
}

#menu a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

#menu a:hover {
    color: #f00;
}

#menu span {
    padding: 10px;
}

#footer {
    position: absolute;
    display: block;

    bottom: 0px;
    width: 100%;

    text-align: center;
    font-size: smaller;

    background-color: #eee;
}

.pi {
    position: absolute;
    right: 10px;
    bottom: 5px;
}

.pi a {
    text-decoration: none;
    color: #ccc;
    font-size: larger;
    font-weight: bold;
}
