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

body {
    font-family: monospace;
    background-color: lightgrey;

}

.nav {
    position: absolute;
    width: 100%;
    height: 100px;
    border-bottom: 1px black solid;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

img {
    width: 100px;
    display: inline-block;
    border-right: 1px black solid;
    margin-left: -7px;
}

.content {
    position: absolute;
    margin-top: 100px;
    width: 100%;
    height: calc(100% - 100px);
}

blink {
  animation: 0.7s linear infinite condemned_blink_effect;
}

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

p {
    margin-bottom: 15px;
}

a {
    color: black;
}

a:hover {
    background-color: goldenrod;
}

.row {
    width: 100%;
    height: 300px;
    display: block;
    border-bottom: 1px black solid;
    padding: 10px;
}

.desk {
    width: 400px;
    border: 0;
    margin-top: 5px;
    margin-left: 5px;
}


@media only screen and (max-width: 704px) {

}