/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

div#links_collection.container {
  width: 25%;
}
div#blog_posts.container {
  width: 55%;
}

.blog h2 {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  font-size:xx-large;
}
.blog h4 {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  font-size:x-small;
}
.song h2 {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  font-size:xx-large;
}
.song h4 {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  font-size:x-small;
}

.website {
  display: flex;
}

html {
    box-sizing: border-box;
    max-width: 120ch;
    margin: auto;
    font-size: 1em;
    color: #333;
    line-height: 1.4;
}

* {
    box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a:link {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

code {
  margin: 0;
  font: 1rem/1.5 'Roboto Mono', monospace;
  user-select: all;
  display: block;
  padding: 20px;
  border: 2px dashed #c9baa7;
  color: #31808c;
  background-color: #f5f4ef;
  text-align: left;
  font-family: inherit;
  overflow: auto;
}

code:focus {
  border: 2px dashed #31808c;
  outline: none;
  animation: select 100ms step-end forwards;
}

pre {
  margin: 0;
  font: 1rem/1.5 'Roboto Mono', monospace;
}
