		*{
 margin : 0;
 padding: 0;
 box-sizing: border-box;
}

body {
    font-family: Menlo, Monaco, "Courier New", monospace;
}

a {
    color: black;
}

blink {
  animation: 0.7s linear infinite condemned_blink_effect;
}

@keyframes condemned_blink_effect {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}


.nav {
    position: fixed;
    left: 0;
    width: 150px;
    height: calc(100% / 7);
    display: flex;
    flex-direction: column;
    border-right: 1px solid goldenrod;
    border-bottom: 1px solid goldenrod;
    border-left: 0px;
    padding: 10px;
    line-height: 13px;
}

.home {
    background-color: goldenrod;
}

.library {
    top: calc(100% / 7);
}

.library:hover {
    background-color: cornflowerblue;
    color: white;
}

.brc {
    top: calc(2 * (100% / 7));
    border-top: 0px;
}

.brc:hover {
    background-color: darkgray;
    color: white;
}

.programs {
    top: calc(3 * (100% / 7));
    border-top: 0px;
}

.programs:hover {
    background-color: chocolate;
    color: white;
}

.desk {
    top: calc(4 * (100% / 7));
}

.desk:hover {
    background-color: orangered;
    color: white;
}

.patio {
    top: calc(5 * (100% / 7));
}

.patio:hover {
    background-color: forestgreen;
    color: white;
}

.misc {
    top: calc(6 * (100% / 7));
    bottom: 0;
}

.misc:hover {
    background-color: burlywood;
    color: white;
}

.content {
    position: fixed;
    left: 150px;
    top: 0;
    width: calc(100% - 150px);
    height: 100%;
    display: flex;
  /*  flex-direction: column;*/
    background-color: gainsboro;
    padding: 10px;
    padding-left: 20px;
    overflow: auto;
}

p {
    line-height: 15pt;
    width: 100%;
    word-break: keep-all;
}

.lang {
    width: 100%;
    text-align: right;
}


@media screen and (max-width: 704px) {
     body {
        font-size: 9pt;
    }
    
    .home, .library, .brc, .programs, .desk, .patio, .misc {
        width: 100px;
    }

    .content {
        width: calc(100% - 100px);
        left: 100px;
    }
}
