/* CSS reset */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
    margin: 0px;
    padding: 0px;
}
html,body {
    margin: 0px;
    padding: 0px;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
fieldset,img { 
    border: 0px;
}
input{
    border:1px solid #b0b0b0;
    padding:3px 5px 4px;
    color:#979797;
    width:190px;
}
address,caption,cite,code,dfn,th,var {
    font-style:normal;
    font-weight:normal;
}
ol,ul {
    list-style:none;
}
caption,th {
    text-align:left;
}
h1,h2,h3,h4,h5,h6 {
    font-size:100%;
    font-weight:normal;
}
q:before,q:after {
    content:'';
}
abbr,acronym {
    border:0;
}


/* hoytech style */

body {
  font-size: 15pt;
}

h1,h2,h3,pre,p {
  margin: 30px 0px 20px 0px;
}

h1 {
  font-size: 200%;
  font-weight: bold;
}
h2 {
  font-size: 150%;
  font-weight: bold;
}
h3 {
  font-size: 120%;
  font-weight: bold;
}

pre {
  overflow: auto;
}

p {
  margin-top: 20px;
  margin-bottom: 20px;
}


.site-body a:link, .site-body a:active, .site-body a:visited {
  color: black;
  text-decoration: underline;
}
.site-body a:hover {
  color: #006a1b;
  text-decoration: underline;
}

.site-body ul {
  list-style: initial;
  margin-left: 20px;
}




body {
  display: flex;
  flex-direction: column;
  flex: 1;
  font-family: arial, sans;
  min-height: 100vh;
}

.site-body {
  display: flex;
  flex-direction: row;
  flex: 1;
  align-items: stretch;
  justify-content: center;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background: black;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 32px;
  color: white;
  text-decoration: none;
}
.logo img {
  margin-right: 30px;
  height: 64px;
}
.nav-links {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
.nav-links li {
  padding-left: 20px;
}
.nav-links a:link, .nav-links a:active, .nav-links a:visited {
  color: white;
  text-decoration: underline;
}
.nav-links a:hover {
  color: #006a1b;
  text-decoration: underline;
}

.content {
  padding: 15px 20px 20px 20px;
}

.links {
  order: 1;
  padding: 10px;
  width: 300px;
}
.links ul {
  list-style-type: none;
}
.links a:link, .links a:active, .links a:visited {
  color: black;
  text-decoration: underline;
}
.links a:hover {
  color: #006a1b;
  text-decoration: underline;
}

footer {
  padding: 20px;
  color: white;
  background-color: black;
}




.news-item .news-desc {
  margin-left: 20px;
}




.video-container {
  margin-bottom: 30px;
}

.talk-summary {
  margin-top: 30px;
}

.talk-summary .desc {
  margin-left: 15px;
}



@media (max-width: 1000px) {
  .site-body {
    flex-direction: column;
  }
  .nav-links {
    flex-direction: column;
  }
  .links {
    border-top: 3px solid black;
    padding: 0px;
    width: 100%;
  }
  .links ul, .links h2 {
    margin: 20px;
  }
}

@media (min-width: 1001px) {
  .content {
    width: 900px;
  }
  .links {
    border-left: 3px solid black;
    padding-left: 50px;
  }
}
