html {
    font-family: "DM Sans", sans-serif;
}

body {
    margin: 15px;
}

p {
    margin: 0;
}

nav {
    display: inline;
    justify-content: space-around;
}

nav a {
    text-decoration: none;
    font-size: calc(12pt + 0.4vw);
    margin: 1vw;
    color: black;
    padding: 0 10px 0 10px;
}

nav img {
    float: right;
    width: 5%;
}

#nav-page {
    font-weight: bold;
    background-color: #faebac;
}

.construct {
    font-size: 35pt;
    justify-self: center;
    margin-top: 15%;
}

#copyright {
    font-size: 0.8em;
}

@media screen and (max-width:606px) {
    nav {
        display: flex;
    }

    nav img {
        display: none;
    }

    .construct {
        font-size: calc(20pt + 0.4vw);
    }

 }