*, *::before, *::after {
    box-sizing: border-box;
  }

body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  background: #ffffff;
  color: #000000;
  margin: 0;
  width: 100%;
  transition: all 1s ease;
}



a {
  color: #ffffff;
  text-decoration: none;
}

.content-wrap {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 1em 0;
  box-sizing: border-box;
}

header {
  background: transparent;
  padding: 1em;
  text-align: center;
  display: flex;
  justify-self: center;
  gap: 50px;
}
/*
nav {
  background: #eeeeee80;
  border-radius: 10px;
  text-align: center;
  padding: 1em;
  width: 300px;
}

nav a {
  color: #000000;
  text-decoration: none;
  margin: 0 0.5em;
}
*/
footer {
  background: transparent;
  padding: 1em;
  text-align: center;
  color:#ffffff
}

.layout {
  display: flex;
  gap: 1em;
  box-sizing: border-box;
  justify-content: center;  /* <-- center the columns horizontally */
  max-width: 100%;          /* ensure it fits inside .content-wrap */
}


aside {
  max-height: max-content;
  margin-top: 10px;
}

main {
  max-height: max-content;
  max-width: max-content;
  justify-self: center;
  margin-top: 10px;
}

aside, main {
  padding: 16px;
  border: 0px solid #ccc;
  box-sizing: border-box;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 5px;
  border: 2px outset rgba(255, 255, 255, 0.3);
}


/*Mobile*/
@media (max-width: 768px) {
  .layout {
    flex-direction: column;
  }
  .left-section .left, .main, .right {
    flex: 1 1 100%;
  }
  nav {
    flex-direction: column;
    gap: 0;
  }
}

