@import url('https://fonts.googleapis.com/css2?family=Cascadia+Code:ital,wght@0,200..700;1,200..700&family=Rubik+Broken+Fax&display=swap'); 
/* RESET */ 
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  } 
  /* BASE */ 
  body { 
    background-color: #bfffe3; 
    font-family: "Cascadia Code", monospace; 
    color: #1b3a2a; 
    padding: 1.2rem; 
    }

header {
  text-align: center;
  background-color: #e9fff5;

  border: 5px solid #2f6f4e;
  border-radius: 20px;

  padding: 1.5rem;
  margin-bottom: 2rem;

  box-shadow:
    7px 7px 0px #2f6f4e,
    12px 12px 25px #00000025;
}

h1 {
  font-size: 2.6rem;
  color: #2f6f4e;
  text-shadow: 2px 2px 0 #ffffff;
}

.marquise {
  color: #ff4d6d;
  border: 2px dashed #2f6f4e;
  padding: 0.5rem;
  margin-top: 1rem;
  background: #ffffffaa;
}

/*LAYOUT GERAL (PÁGINA HOME)*/
main {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

/*POSTS*/
.posts {
  flex: 2;

  background-color: #fffaf0;
  border: 5px solid #2f6f4e;
  border-radius: 20px;

  padding: 1.5rem;
  padding-right: 220px;

  position: relative;

  box-shadow:
    7px 7px 0 #2f6f4e,
    12px 12px 25px #00000025;
}

.img-posts {
  position: absolute;
  right: 20px;
  top: 50%;

  width: 180px;
  height: auto;

  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/*CONTATO*/
.contato {
  flex: 1;
width: fit-content;
    margin-top: 20px;
  background-color: #fffaf0;
  border: 5px solid #2f6f4e;
  border-radius: 20px;

  padding: 1rem;

  box-shadow:
    7px 7px 0px #2f6f4e,
    12px 12px 25px #00000025;
}

/*SOBRE*/
.sobre {
  background-color: #fffaf0;
  border: 5px solid #2f6f4e;
  border-radius: 20px;

  padding: 1.5rem;
  margin-bottom: 2rem;

  box-shadow:
    7px 7px 0px #2f6f4e,
    12px 12px 25px #00000025;
}

/*PÁGINA DE POST (SIDEBAR)*/
.container {
  flex: 3;

  background-color: #fffaf0;
  border: 5px solid #2f6f4e;
  border-radius: 20px;

  padding: 1.8rem;

  box-shadow:
    7px 7px 0px #2f6f4e,
    12px 12px 25px #00000025;
}

.sidebar {
  flex: 1;

  background-color: #e9fff5;
  border: 5px solid #2f6f4e;
  border-radius: 20px;

  padding: 1.5rem;

  position: sticky;
  top: 1rem;

  box-shadow:
    7px 7px 0px #2f6f4e,
    12px 12px 25px #00000025;
}

/*TIPOGRAFIA*/
h2 {
  color: #2f6f4e;
  margin-bottom: 1rem;
}

h3 {
  color: #ff7aa2;
}

p {
  line-height: 1.75;
  margin-bottom: 1rem;
}

/*LINKS*/
a {
  color: #2f6f4e;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/*IMAGENS*/
img {
  max-width: 100%;
  display: block;
  margin: 1.5rem auto;

  border: 4px solid #2f6f4e;
  border-radius: 14px;

  box-shadow: 4px 4px 0px #2f6f4e;
}

/*BOTÃO VOLTAR*/
.botao-voltar {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.6rem 1rem;

  background-color: #fffaf0;

  border: 4px solid #2f6f4e;
  border-radius: 14px;

  color: #2f6f4e;
  text-decoration: none;

  box-shadow: 4px 4px 0px #2f6f4e;

  transition: 0.2s ease;
}

.botao-voltar:hover {
  transform: translate(-2px, -2px);
  background-color: #e9fff5;
  box-shadow: 6px 6px 0px #2f6f4e;
}

/*FOOTER*/
footer {
  margin-top: 2rem;
  text-align: center;
}

/*RESPONSIVO*/
@media (max-width: 768px) {
  main {
    flex-direction: column;
  }

  .sidebar {
    position: static;
  }
}


main {
  min-height: 1px;
}

.post {
  flex-wrap: nowrap;
}