@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  /* border: 1px solid #ccc; */
}
#sidebutton {
  width: 60px;
  height: 73px;
  top: 0px;
  right: 10px;
  position: fixed;
  z-index: 2;
  cursor: pointer;
  font-size: 2em;
  color: #777777;
  background: none;
  border: none;
}
#sidemenu {
  display: inline-block;
  width: 300px;
  height: 100%;
  background-color: rgba(200, 200, 200, 0.8);
  position: fixed;
  z-index: 1;
  top: 0px;
  right: -300px;
  transition: right 0.3s ease-in-out;
}
#sidemenu.active{
  right: 0px;
}
#home_canvas {
  width: 100%;
  display: inline-block;
}
#home_title {
  display: block;
  position: fixed;
  width: 100%;
  top: 0px;
  padding: 20px 0px 15px 40px;
  background-color: white;
  border-bottom: 0.5px solid #777777;
}
#home_title a {
  font-family: 'Lora', serif;
  font-size: 1.8em;
  font-weight:700;
}
.home_subtitle {
  font-family: 'HelveticaNeue-Light';
  font-size: 1.3em;
  font-weight: 100;
  padding: 30px 0px 20px 0px;
  text-align: center;
}
#home_curator_container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  margin: auto;
  margin-top: 40px;
  width: 1280px;
  height: 480px;
  /* border: 1px solid #ccc; */
}
.home_curator_items {
  width: 360px;
  height: 480px;
}
.home_curator_digest {
  font-family: 'HelveticaNeue-Light';
  font-size: 1em;
  font-weight: 100;
  padding: 18px 0px 0px 0px;
  text-align: center;
}
.home_curator_name {
  font-family: 'HelveticaNeue';
  font-size: 1.1em;
  font-weight: 580;
  padding: 8px 0px 0px 0px;
  text-align: center;
}
.home_curator_address {
  font-family: 'HelveticaNeue';
  font-size: 0.9em;
  color: #333333;
  font-weight: 580;
  padding: 16px 0px 0px 0px;
  text-align: center;
}
.home_curator_image {
  width: 360px;
  height: 360px;
  background-color: rgba(245, 240, 228, 0.7)
}
a {
  color: inherit;
  text-decoration: none;
}
