:root {
  --text: #000;
  --green: #00be4c;
  --blue: #3093ce;
  --red: #d6161f;
  --yellow: #fab210;
  --grey: #999;
  --serif: Garamond, serif;
  --sans: "Proxima Nova", Helvetica, "Bitstream Vera Sans", sans-serif;
  --fixed: "Anonymous Pro", Courier, monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: #fff;
  color: var(--text);
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-top: 2em;
  color: var(--text);
  font-family: var(--serif);
}

a,
a:link,
a:visited {
  color: #000;
  text-decoration: underline;
}

a:hover {
  color: #fff;
  background: var(--blue);
  text-decoration: none;
}

p,
li,
code {
  font-size: 1.4em;
  line-height: 1.6em;
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0 0 1.4em;
  padding: 0 0 0 1.2em;
}

li {
  line-height: 1.2em;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: normal;
}

h1 {
  font-size: 2.8em;
  line-height: 1em;
  margin: 0 0 .25em;
}

h2 {
  margin: 0;
}

.fixed {
  font-family: var(--fixed);
}

.sans {
  font-family: var(--sans);
}

.l-container {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 1em;
  padding-right: 1em;
}

.l-container::after {
  content: "";
  display: table;
  clear: both;
}

.l-header {
  width: 100%;
  margin-bottom: 10px;
}

.site--name {
  float: left;
  width: 43.18182%;
  margin: 0;
  padding: 0;
}

.site--name a {
  display: block;
  width: 280px;
  height: 50px;
  background: #fff url("assets/dreamformula-logo.png") no-repeat 0 0;
  text-indent: -999em;
  overflow: hidden;
}

.site--main-nav {
  float: right;
  width: 54.54545%;
}

nav {
  font-family: var(--sans);
  text-transform: uppercase;
}

nav ul {
  float: right;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  float: left;
  padding: 0 0 0 30px;
  margin: 0 0 0 5px;
}

nav a,
nav a:link,
nav a:visited {
  font-size: 0.8em;
  color: var(--grey);
  text-decoration: none;
  border-bottom: 2px solid var(--grey);
}

nav a:hover {
  color: #000;
  background: #fff;
  border-bottom-color: #000;
}

.content {
  clear: both;
  margin-bottom: 20px;
}

.site--breaker {
  background: var(--blue);
  color: #fff;
  font-family: var(--serif);
  font-size: 2.25em;
  text-align: center;
  margin-bottom: 80px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.site--breaker a {
  color: #fff;
}

.site--breaker p {
  margin: 0 0 1em;
}

.site--breaker_full {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.site--breaker_blue p:hover a {
  color: #fff;
}

.site--breaker_green {
  background: var(--green);
}

.site--breaker_red {
  background: var(--red);
}

.site--breaker_yellow {
  background: var(--yellow);
}

.site--breaker--content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 1em;
  padding-right: 1em;
}

.site--small_text {
  font-size: .875em;
}


.post {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.post--head {
  margin: 3em 0 1em;
}

.post--title {
  font-size: 4em;
  margin: 0;
}

.post--title a {
  color: #000;
  text-decoration: none;
}

.post--title a:hover {
  color: var(--green);
  background: none;
}

.about--profile-link {
  text-decoration: none;
}

.about--profile-link:hover {
  text-decoration: underline;
}

.talks-table-wrap {
  margin-top: 30px;
}

.talks-table-wrap summary {
  cursor: pointer;
  margin-bottom: 14px;
}

.talks-table-scroll {
  width: 100%;
  overflow-x: auto;
}

.talks-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  margin-bottom: 1em;
}

.talks-table th,
.talks-table td {
  text-align: left;
  vertical-align: top;
  padding: 10px;
  border: 1px solid #ddd;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.35;
}

.talks-table th {
  background: #f2f2f2;
}

.l-footer {
  float: left;
  width: 100%;
  padding: 40px 0;
}

footer,
footer a {
  text-align: right;
  font-family: var(--sans);
}

blink {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 760px) {

  .site--name,
  .site--main-nav {
    float: none;
    width: 100%;
  }

  .site--name a {
    width: 100%;
    max-width: 280px;
  }

  nav ul {
    float: none;
    margin-top: 1em;
  }

  nav li {
    padding-left: 0;
    margin-right: 16px;
  }

  .post--title {
    font-size: 2.6em;
  }

  .site--breaker {
    font-size: 1.7em;
  }

  .site--breaker_full {
    min-height: 70vh;
  }
}