/*. ݁₊ ⊹ . ݁˖ . ݁mais ou menos isso. ݁₊ ⊹ . ݁˖ . ݁*/

:root {--ceu: steelblue}

/* fontes */
@font-face {font-family: "Coral Pixels"; src: url(fontes/CoralPixels.ttf); font-weight: 400; font-style: normal}
@font-face {font-family: "Times New Roman"; src: url(fontes/TimesNewRoman-heartv.ttf) format("truetype")}
@font-face {font-family: "Times New Pixel"; src: url(fontes/TimesNewPixel-heartv.ttf) format("truetype")}
@font-face {font-family: "Reddit Sans"; src: url(fontes/RedditSans.ttf); font-optical-sizing: auto; font-weight: 200 900}
@font-face {font-family: "Reddit Sans Italic"; src: url(fontes/RedditSansItalic.ttf); font-optical-sizing: auto; font-weight: 200 900; font-style: italic}

/* aonde o q e como */
* {box-sizing: border-box}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ceu);
  background-image: url(nuvens.png);
  background-attachment: fixed
}
.ceu {
  width: 920px;
  display: grid;
  grid-template-columns: 195px 1fr; 
  grid-template-rows: 175px 50px 1fr 30px; 
  gap: 0px 10px; 
  grid-template-areas: 
    "header header"
    "aside ."
    "aside main"
    ". footer"
}
header {
  grid-area: header;
  position: fixed;
  top: 0px;
  background-image: url(nuvem.png);
  height: 250px;
  width: 920px;
  font-family: "Coral Pixels";
  font-size: 65px;
  letter-spacing: 5px;
  padding-left: 250px;
  padding-top: 110px
}
aside {grid-area: aside}

main {grid-area: main}

footer {grid-area: footer; text-align: center}


/* caixas */
footer,
.caixinha,
.caixona {
  background-color: whitesmoke;
  border: 1px solid var(--ceu);
  outline: 1px dotted var(--ceu);
  margin-bottom: 10px;
  font-family: "Reddit Sans";
  font-weight: 350;
  font-size: 13px;
  line-height: 1.5;
  color: midnightblue
}
.caixinha {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 5px
}
.caixona {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px
}

/* vibes */
::selection {background: var(--ceu); color: whitesmoke}

h1 {
  font-family: "Coral Pixels";
  font-size: 32px;
  line-height: 1;
  text-align: right;
  letter-spacing: 3px;
  margin: 0
}
h2 {
  font-family: "Times New Roman";
  font-weight: normal;
  font-size: 24px;
  line-height: 1.2;
  background: linear-gradient(0deg, firebrick 0%, indigo 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0
}
h3 {
  font-family: "Times New Pixel";
  font-weight: normal;
  font-size: 24px;
  line-height: 1.3;
  background: linear-gradient(0deg, indigo 0%, steelblue 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0
}
p {margin: 0 5px 0 0}
.blablabla {text-indent:10px; padding-bottom: 10px; text-align: justify}

h1:first-child, 
h2:first-child, 
h3:first-child, 
p:first-child {margin-top: 0}
h2:last-child,
p:last-child {margin-bottom: 0}

a, a:visited {color: midnightblue; text-decoration: underline var(--ceu) dotted 1px}
a:hover, a:focus {color: var(--ceu); text-decoration: none}

.cen {text-align: center}
.dir {text-align: right}
.alt-txt {color: firebrick}
hr {border: 0; border-bottom: 1px dotted lightcoral; margin: 15px 5px}
mark {background: lemonchiffon; padding: 0px 3px; color: midnightblue}
blockquote {margin: 0px; padding: 10px; border: 1px dotted lightcoral}
b {font-weight: 550}
i {font-family: "Reddit Sans Italic"; font-style: italic}

main ol, main ul {
  font-family: "Reddit Sans";
  font-weight: 350;
  font-size: 13px;
  margin-top: 0;
  padding-left: 15px;
  line-height: 1.5;
  color: midnightblue
}
main ul {list-style: circle outside}
main ol {list-style: decimal outside}
::marker {color: firebrick}

/* navegar é preciso */
aside a,
aside a:visited {
  line-height: 1;
  font-family: "Times New Pixel";
  font-weight: normal;
  font-size: 24px;
  text-decoration: none;
  background: linear-gradient(0deg, midnightblue 0%, steelblue 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}
aside a:hover,
aside a:focus {
  background: linear-gradient(0deg, midnightblue 0%, lightcoral 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

nav ul {list-style: none; padding: 0}

nav a,
nav a:visited {
  background: linear-gradient(0deg, midnightblue 0%, seagreen 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}
nav a:hover,
nav a:focus {
  background: linear-gradient(0deg, midnightblue 0%, lemonchiffon 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}
textarea {
  height: 50px;
  width: 150px;
  color: midnightblue;
  border: 1px solid var(--ceu);
  outline: 1px dotted var(--ceu);
  font-family: "Times New Pixel", serif;
  font-size: 12pt;
  line-height: 0.75;
}
.log {
  height:150px; 
  overflow:scroll; 
  border: 1px dotted var(--ceu);
  background-color: lightsteelblue;
  font-size: 11px;
  padding: 7px
}
.log p {
  line-height: 1;
  padding-bottom: 7px
}
.log p:last-child {padding-bottom: 0}

/* acessibilidade */
#skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  transform: translateY(-3rem);
  transition: transform 0.1s ease-in;
  z-index: 9999;
}
#skip-to-content-link:focus,
#skip-to-content-link:focus-within {transform: translateY(0)}