/*Variáveis*/
:root {
  --bg-color: #0e091b;

  --color-white: #fefbfb;
  --color-grey: #c9c9c9;

  --font-main: "IBM Plex Sans";
  --font-secondary: "DM Sans";
}

/*Reset*/
* {
  padding: 0;
  margin: 0;
  user-select: none;
}
*,
::before,
::after {
  box-sizing: border-box;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}

a:hover {color:#4d90fe}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 500;
  color: var(--color-white);
}
button,
input {
  border: 0;
}
body {
  padding: 10px;
  color: var(--font-color-1);
  background-color: var(--bg-color);
  font-family: var(--font-main);
}
html {
  scroll-behavior: smooth;
  display: block;
  align-items: center;
  justify-content: center;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background-color: #17161d;
}
::-webkit-scrollbar-thumb {
  background-color: #6610f2;
  border-radius: 8px;
}

/*Header*/
header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 10px;
}
header img {
  height: 125px;
  width: 125px;
  border-radius: 50%;
  margin-bottom: 3.2rem;
}
header h1 {
  font-size: 3.2rem;
}
header p {
  margin-top: 0.8rem;
  font-size: 2rem;
  color: var(--color-grey);
}

ul > li {padding: 10px 0;border-bottom: 1px dashed white;color:white;}

/*Cards*/
section div {
  display: flex;
  justify-items: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
  gap: 1.6rem;
}
section div a {
  text-decoration: none;
  flex-basis: 200px;
  justify-content: space-between;
  flex-grow: 1;
}
section div article {
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.4rem;
  border: 1px solid var(--bg-color);
}
section div article:hover {
  border: 1px solid var(--color-white);
}
section div article img {
  width: 28px;
  margin-right: 1.6rem;
}
section div #ebook {
  flex-grow: 1;
  flex-basis: 600px;
}
section div article h2 {
  text-align: center;
  font-size: 2rem;
  font-family: var(--font-secondary);
}
.headline a{color: #da0175 !important;}
.gsc-adBlock{display:none !important;}
