@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  letter-spacing: 0.3px;
}

body {
	background-color: #2e3440;
}

p,
a,
button,
li,
ul,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3 {
  margin-bottom: 20px;
}

h2 {
	font-size: 20px;
}

p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 24px;
}

ul, ol {
	margin-left: 24px;
	margin-bottom: 16px;
}

ul li, ol li {
	margin-bottom: 6px;
}

a {
  color: #8fbcbb;
}

img {
  max-width: 650px;
  object-fit: cover;
  @media (max-width: 720px) {
    max-width: calc(100% - 60px);
    width: calc(100% - 60px);
  }
}

pre {
  padding: 12px;
  border-radius: 4px;
  margin-top: 16px;
  margin-bottom: 16px;
}

main {
  height: 100vh;
	color: #d8dee9;
}
span {
  font-family: "Roboto", sans-serif;
}

header {
	top: 0;
	left: 0;
  position: fixed;
  display: flex;
  justify-content: center;
	background-color: #2e3440;
  padding: 30px;
  width: 100%;
}

header a {
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
	color: #5e81ac;
}

header a.active {
	color: #8fbcbb;
}

header .container {
  width: 900px;
  display: flex;
  justify-content: flex-end;
  column-gap: 24px;
}
@media (max-width: 900px) {
  header .container {
    width: 100%;
  }
}

.container-content {
	padding-top: 100px;
	margin: auto;
  max-width: 900px;
	min-height: 700px;
}

.post-list {
  list-style-type: none;
}
.post-list .post {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  padding-top: 12px;
  padding-bottom: 12px;
  align-items: center;
}
.post-list .post h4 {
  font-weight: 400;
}
.post-list .post p {
  margin: 0;
}

.post .date {
  color: #5e81ac;
}

.footer {
  height: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 600px) {
  .footer {
    height: 120px;
  }
}
.footer .color-picker {
  display: flex;
  border-radius: 6px;
  padding: 8px 12px 8px 12px;
  cursor: pointer;
  column-gap: 4px;
  margin-bottom: 8px;
}
.footer .footer-blog {
  width: 900px;
  padding-top: 6px;
  border-top-width: 2px;
  border-top-style: solid;
	border-top-color: #81a1c1;
  display: flex;
  justify-content: flex-end;
  column-gap: 3px;
}

.icon {
	fill: #81a1c1;
}

.icon:hover {
	fill: #88c0d0;
}

@media (max-width: 900px) {
  .footer .footer-blog {
    width: calc(100% - 60px);
  }
}

.copyright,
.current-theme {
	color: #81a1c1;
  font-size: 15px;
}
