html {
    font-family: Georgia;
    background-color: #ffffff;
}

body {
  margin-top: 0px;
}

.intro {
    display: flex;
}

.tuxsay {
    font-size: 1em;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#spotifyEmbed {
  flex: 1;
}

#textBubble {
  font-size: 1.2em;
}
.previewWindow {
    border: .2em double rgb(0, 0, 0);
    height: 30em;
    width: 100%;
}

.container {
    margin: auto;
    max-width: 70em; /* col width of 50-70 best for readers*/
}

#titlebar {
    padding: 1em;
    margin-bottom: 10px;
    background-color: rgb(243, 243, 243);
    display: flex;
    align-items: center;
}

#titlebar a:hover{
    color: #4cb446;
}

a:hover {
    color: #4cb446;
}

.titlelink{
    font-size: 1.2em;
    padding: 1em;
    text-decoration: none;
    color: rgb(105, 105, 105);
}

#titlebar > .name {
    flex: 1;
}

:hover#github {
    filter: invert(0.5) sepia(1) saturate(5) hue-rotate(0deg);
}

:hover#linkedin {
    filter: invert(0.5) sepia(1) saturate(5) hue-rotate(180deg);
}

:hover#mailto {
    filter: invert(0.5) sepia(1) saturate(5) hue-rotate(240deg);
}

.linklogo {
    width: 2em;
    height: 2em;
    margin-right: 1em;
}

a.name {
    color: rgb(81, 81, 81);
    text-decoration: none;
}

a.name > h1 {
    display: inline;
}

a {
    color: rgb(109, 109, 172);
    text-decoration: none;
}

a:hover {
    color: #4cb446;
}

@media (max-width:calc(80em)){
  .container {
      max-width: 90vw;
  }

  .intro {
      flex-direction: column;
  }

}

#projectslist li {
  margin-bottom: 1em;
}

#algorithms li {
  margin-bottom: 1em;
}

ul {
	position: relative;
	list-style: none;
	margin-left: 0;
	padding-left: 1.2em;
}
ul li:before {
	content: "--";
	position: absolute;
	left: 0;
}


ul ul li:before {
	content: "~";
	position: absolute;
	left: 0;
}
