html, body {
  padding: 0px;
  margin: 0px;
  font-family: 'Poiret One', sans-serif;
  background-color: hwb(84 78% 18%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* menu */

.content {
  display: flex;
  flex-direction: column;
  background-color: hwb(84 78% 18%);
  padding: 0px;
  margin: 0px;
  height: 100%;
  color: #202218;
  max-width: 100vw;
}
         
header {
  display: flex;
  flex-direction: row;  
  position: sticky;
  justify-content: center;
  align-items: center;
  top: 0;
  z-index: 1000;
  max-width: 100vw;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: hwb(84 78% 18%);
  box-shadow: 8px 16px 32px black;
}

header img {
  height: auto;
  width: 50px;
  border-radius: 50px;
  opacity: 80%;
}

.menu {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  margin: 0;
  font-size: 25px;
}

li {
  font-family: 'Poiret One', sans-serif;
  padding: 0.75em 1.5em;
  max-width: 100%;
}

li:hover {
  font-weight: 900;
}

a {
  text-decoration: none;
  color: black;
}

/* workspace picture */

.workspacepiclanding {
  max-height: 60vh;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 50%), url("workspacewitholaf2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 20%;
  display: flex;
  justify-content: flex-start;
  padding: 10% 20%;
}

.workspacepic {
  height: 400px;
  object-fit: cover;
  object-position: 80% 25%;
}

.workspacesection {
  display: flex;
  flex-direction: column;
  max-width: 100vw;
}

.name {
  display: flex;
  font-family: 'Alpha Slab One', sans-serif;
  font-size: 50px;
  color: white;
  text-align: start;
}

.landingbuttons {
  display: flex;
  gap: 20px;
}

a button {
  background-color: white;
  color: hwb(113 18% 73%);
  font-size: 15px;
  padding: 0.5em 1em;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  border: 2px solid hwb(84 78% 18%);
}

a button:hover {
  border: 2px solid hwb(113 18% 73%);
}

/* introduction olaf */

.introbackground {
  display: flex;
  justify-content: center;
  background: linear-gradient(to top right, hwb(84 78% 18%), #ffffff);
  padding: 5% 20%;
  max-width: 100vw;
}
  
.intro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  align-items: center;
  box-shadow: 4px 32px 32px rgb(204, 204, 204);
  border: 2px solid rgb(255, 255, 255);
  border-radius: 12px;
  padding: 10%;
  background-color: white;
}

.intro:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.intro div {
  font-size: 15px;
  text-align: left;
  padding-right: 5%;
  color: #202218;
  font-size: 25px;
}

.intro img {
  max-width: 100%;
  border-radius: 4px;
}

.intro img:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Objects workshops section */

.objectsandworkshops {
  background-color: white;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 5% 20% 10% 20%;
  gap: 10%;
  max-width: 100vw;
}

.objectssection, .workshopssection {
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%), url("tubes.jpg");
  background-size: cover;
  background-repeat: no-repeat;  
  box-shadow: 4px 18px 32px rgb(126, 126, 126);
  padding: 30px;
  aspect-ratio: 1/1;
  border-radius: 4px;
}

.workshopssection {
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%), url("workshop7.jpg");
  background-size: cover;
  background-repeat: no-repeat;  
  box-shadow: 4px 18px 32px rgb(126, 126, 126);
}

.objectssection:hover, .workshopssection:hover {
  
  text-decoration: underline;
}

.obj, .work {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.title {
  text-align: center;
  font-size: 32px;
  padding: 5% 0% 0% 0%;
  background-color: white;
  margin: 0px;
}

.objectssection p, .workshopssection p {
  font-size: 16px;
  text-align: center;
  text-shadow: 2px 2px 4px rgb(199, 199, 199);
  font-weight: bold;
}

/*objects section */

.landingobjects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
  background-color: hwb(84 78% 18%);
  padding: 5% 10%;
}

.landingobjects img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landingobjects img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* footer and copyright */

p a {
  color: hwb(84 78% 18%);
}

footer {
  margin-top: auto;
  display: flex;
  padding: 5% 20%;
  background-color: hwb(113 18% 73%);
  max-width: 100vw;
  color: hwb(84 78% 18%);
  font-size: 15px;
  text-align: left;
}

.copyright {
  background-color: #202218;
  color: hwb(84 78% 18%);
  margin: 0px;
  text-align: center;
  padding: 0.5em 0em;
}

@media screen and (max-width: 1300px) {
  .workspacesection {
    padding: 2em;
  }
  .workspacepiclanding {
    justify-content: center;
    align-items: center;
    padding-left: 0px;
  }
}

@media screen and (max-width: 1280px) {
  .stickyheader {
    padding: 50px;
  }
}

@media screen and (max-width: 1080px) {
  .objectsandworkshops {
    gap: 5%;
    grid-template-columns: repeat(1, 1fr);
  }
  .objectssection p, .workshopssection p {
    font-size: 16px;
  }
  
  .stickyheader {
    padding: 50px;
  }

  .intro {
    gap: 2em;
    grid-template-columns: repeat(1, 1fr);
  }

  .landingobjects {
    grid-template-columns: repeat(3, 1fr);
    padding: 50px;
  }
}

@media screen and (max-width: 768px) {
  .stickyheader {
    flex-direction: column;
    gap: 1rem;
    padding: 20px;
  }
  
  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .objectssection p, .workshopssection p {
    font-size: 16px;
  }
  .landingobjects {
    grid-template-columns: repeat(3, 1fr);
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .stickyheader {
    flex-direction: column;
    align-items: center;
  }
  .menu {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .menu li a {
    font-size: 1.1rem;
  }

  .objectssection p, .workshopssection p {
    font-size: 12px;
    max-width: 100%;
  }
}