<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
&lt;style&gt;

@media (max-width: 600px) {
  .nav, .projects, .selected {
        width: 100%;
    }
}

*, html {
    margin:0;
    padding:0;
    /* zoom:1.06; */
}

body{
  /* display: block; */
  /* align-content: center; */
  margin: 0;
  padding: 0;
  min-width: 400px;
}
/*---------- Navigation ------------- */

#container {
  max-width: 800px;
  margin: auto;
}
 
/* .container&gt; * {
   transform: scale(1.1); 
} 
*/


nav {
/* background-color: lightyellow; */
font-family: serif;
margin-left: 30px;
margin-top: 20px;
margin-right: 30px;
margin-bottom: 20px;

min-width: 400px;
width:100%;

}

nav:after{
  content: '';
  display: block;
  clear: both;
}

.logo {
  float: left;
  margin: 20px 10px 15px 5px;
  font-size: 24px;
}

.menu {
  float: right;
  margin: 10px 30px 10px 30px;

}
.menu ul {
  list-style: none;
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 0;
}
.menu ul li {
  display: inline-block;
  margin: 0px 10px 0px 10px;
}
.menu ul li a {
  text-decoration: none;
  padding: 20px 10px 20px 10px;
  color: red;
  border-radius: 5px;
}
.menu ul li a:hover{
color: black;
background-color: yellow;
border-radius: 30px;
transition: all 0.9s ease;
}

/*---------- Header ------------- */

.projects {
  position: sticky;
  top:0;
  float: center;
  margin: 0px 20px 20px 20px;
  padding: 10px;
  background-color: lightpink;
  border-radius: 20px;

  display: block;
  min-height: 400px;
  min-width: 800px;
  width: 50%;
  font-family: "Avenir", Verdana, sans-serif;
  /* font-family: "Quicksand", Verdana, sans-serif; */
  font-size: 14px;
  text-align: left;

}

/* aplly to all children of .projects */

.projects &gt; * {
  display: block;
  padding-left: 10px;
}
.projects p{
  margin: 2px;
}

.projects a {
  color:black;
  text-decoration: underline;
}

.projects a:hover {
  color:black;
  text-decoration: underline;
}

.projects table {
  border-collapse: collapse;
  width: 100%;
  padding: 4px;
  margin: 25px 0;
  font-size: 1em;
  min-width: 700px;
  text-align: left;
}

.projects th{
  height: 20px;
  width: 20%;
  padding: 12px 15px;
  padding-bottom: 20px;
}

.projects td{
  padding: 12px 15px;
  border-bottom: 1px dotted black;
}
.projects td:first-child {
  border-right: solid 1px #f00;
}
.year{
font-size: 1rem;
font-weight: 100;
font-style: normal;
}


.selected {
  display: block;
  /* float: left; */
  width:100%;
  min-width: 400px;
  padding: 5px 5px;
  margin: 0px 10px 20px 30px;
  font-family: "Avenir", Verdana, sans-serif;
  font-weight: 100;
}



.row:after{
  content: '';
  clear: both;
  display: table;
}

&lt;/style&gt;
</pre></body></html>