/* RESET */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* the good stuff */
body {
  font-size: 22px;
  font-family: "Raleway", serif;
  font-weight: 400;
  background: #eeeeee;
  color: #000;
}

strong {
  font-weight: 800;
  font-size: 26px;
}

p {
  line-height: 1.6;
}

.wrapper {
  max-width: 800px;
  float: left;
  position: absolute;
  background-color: #eeeeee;
  border: black 1px solid;
  padding: 10px 25px 10px 10px;
  margin: 10px;
}

.cell {
  border-color: maroon;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  margin: 0.75px;
  width: 10px;
  height: 10px;
  display: inline-block;
}

@media (prefers-color-scheme: dark) {
  body{
    background: #333333;
    color: #bcbcbc;
  }
  .wrapper {
    background-color: #333333;
    color: #bcbcbc;
  }
  .cell {
    border-color: #69648a;
  }
}

a:visited,
a:link,
a:active {
  color: #000;
}
@media (prefers-color-scheme: dark) {
  a:visited,
  a:link,
  a:active {
    color: #bcbcbc;
  }
}

a {
  text-decoration: none;
  border-bottom: 2px #888 dashed;
}
a:hover {
  background-color: #a0faac;
}
@media (prefers-color-scheme: dark) {
  a:hover  {
    color: #bcbcbc;
  }
}

.section {
  margin-left: 10px;
  margin-bottom: 30px;
}

.contacts li {
  margin-left: 20px;
  padding: 4px;
}

ul.contacts {
  margin-bottom: 20px;
  font-size: 20px;
}

ul.descriptions {
  margin-left: 25px;
}
ul.descriptions li p {
  margin-left: 20px;
}

ul li p {
  padding-left: 15px;
}

ul.contacts li a {
  margin-right: 5px;
}

ul.talks {
  list-style: circle;
  line-height: 1.6;
  padding-left: 60px;
}

h1,
h2,
h3 {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 40px;
  margin: 20px 0;
}
h2 {
  font-size: 35px;
  margin: 20px 0;
}
h3 {
  font-size: 26px;
  margin: 10px 0;
}
