:root {
  /* Background */
  --bg-col-main: #151b22;
  --bg-col-sec: #0d1117;
  --bg-col-dark: #000000;

  /* Font */
  --font-fam-main: "Cabin", sans-serif;
  --font-fam-lux: "Luxurious Script", cursive;

  /* Text */
  --text-col-main: #ffffff;
  --text-col-sec: #fcfcfead;
  --text-col-bubble: #fcfcfef1;
}

body {
  margin: 0;
  background-color: var(--bg-col-main);
  font-family: var(--font-fam-main);
  color: var(--text-col-main);
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Main components */
header {
  background-color: var(--bg-col-sec);
  height: 50px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header > svg {
  height: 70%;
}

header > * {
  margin-inline: 15px;
}

.title, main {
  margin-inline: 10%;
  position: relative;
  max-width: 700px;
}

.title {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

footer {
  min-height: 50px;
  width: 100%;
  background-color: var(--bg-col-sec);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 40px;
  font-size: 15px;
  color: var(--text-col-sec);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.footer-links > *,
.link {
  text-decoration: none;
  color: var(--text-col-sec);
}

.link {
  text-decoration: underline;
}

.footer-links > *:hover,
.link:hover {
  color: #25aae1;
  cursor: pointer;
}

.copyright {
  position: absolute;
  bottom: 5px;
  font-size: 12px;
}

strong {
  color: #25aae1;
}

.banner-image > img {
  width: 100%;
}

.article-list {
  padding: 0;
}

.article-list > li {
  padding: 10px;
  list-style: none;
  border-radius: 10px;
  margin-bottom: 15px;
  background-color: var(--bg-col-sec);
  cursor: pointer;
  transition: all .2s;
}

.article-list > li > a {
  color: var(--text-col-main);
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

.article-list > li:hover {
  background-color: var(--bg-col-dark);
}