body {
  background-color: #F8F3D9;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}

a {
  text-decoration: none;
  color: #504B38;
}

header {
  background-color: #EBE5C2;
  color: #B9B28A;
  text-align: center;
  padding: 20px;
}

header h1 {
  font-family: "DM Serif Display", serif;
  font-size: 50px;
  text-decoration: none;
  line-height: 0.5;
}

header h2 {
  font-family: "Meie Script", cursive;
  font-size: 35px;
  margin-top: 1px;
  line-height: 0;
}

header a h2 {
  color: #bab694;
}

header a:hover h1,
header a:hover h2 {
  text-decoration: none;
}

header a:hover {
  text-decoration: none;
}

main {
  display: flex;
  padding: 20px;
  justify-content: space-between;
  align-items: stretch;
}

section {
  flex: 3;
  margin-right: 20px;
}

article {
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #504B38;
  text-align: justify;
  line-height: 1.6;
}

p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #504B38;
}

nav {
  font-family: "Montserrat", sans-serif;
}

a:hover {
  text-decoration: underline;
}

article img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

article img:hover {
  transform: scale(1.05);
  filter: brightness(110%);
}

aside {
  flex: 1;
  background-color: #EBE5C2;
  padding: 20px;
  border-radius: 8px;
  position: sticky;
  top: 20px;
  margin-left: 0;
}

aside ul {
  list-style: none;
  padding: 0;
}

aside li {
  margin-bottom: 10px;
  font-size: 20px;
}

aside a {
  color: #504B38;
  text-decoration: none;
  font-size: 15px;
}

aside a:hover {
  text-decoration: underline;
}

footer {
  background-color: #B9B28A;
  color: white;
  text-align: center;
  padding: 10px;
}

frame img {
  position:absolute;
  transform-origin: 50%;
  width: 100%;
  transition: 2 ease;
}

frame:hover {
  transform:scale(2);
  filter:blur(2px);
}

::-webkit-scrollbar {
  width: 5px; 
}

::-webkit-scrollbar-track {
  background-color: #FBFBFB; 
  border-radius: 5px; 
}

::-webkit-scrollbar-thumb {
  background-color: #504B38; 
  border-radius: 5px; 
}

::-webkit-scrollbar-thumb:hover {
  background-color: #6A6349; 
}