body {
  font-family: Arial, sans-serif;
}

.button-container {
  display: flex;
  margin-bottom: 20px;
  max-width: 80%;
  border-bottom: solid 2px rgb(210, 210, 210);
}

.toggle-button {
  padding: 10px 30px;
  border: 2px solid white;
  cursor: pointer;
  background: white;
  font-weight: 600;
  color: gray;
  position: relative;
  border-bottom: 0;
}

.toggle-button.active {
  border: solid 2px rgb(210, 210, 210);
  color: rgb(46, 46, 46);
  border-bottom: 0;
}
.toggle-button.active::after {
  content: "";
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.month-buttons {
  width: 300px;
  max-width: 100%;
  border: solid 1px rgb(210, 210, 210);
  box-sizing: content-box;
  margin-bottom: 50px;
}

.month-button {
  width: 50px;
  cursor: pointer;
  border-radius: 0;
  border: solid 1px rgb(210, 210, 210);
}

.content-container {
  text-align: center;
}

.content {
  display: none;
}

.content.active {
  display: block;
}

.flex {
  display: flex;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 150px;
  justify-content: center;
}
.flex .left {
  width: 900px;
  max-width: 90%;
  margin: 0 auto;
}
.flex .right {
  width: 300px;
  max-width: 90%;
}
.flex .card-info {
  text-align: left;
  padding: 30px 0;
  border-bottom: solid 2px rgb(210, 210, 210);
  max-width: 80%;
  margin: 0 auto;
}
.flex .card-info .title {
  font-weight: 600;
  font-size: 20px;
}
.flex .date {
  font-size: 12px;
}

#month-posts {
  text-align: left;
  max-width: 80%;
  margin: 0 auto;
}
#month-posts li {
  padding: 30px 0;
  border-bottom: solid 2px rgb(210, 210, 210);
  font-size: 20px;
  font-weight: 600;
  list-style: none;
}
#month-posts li a {
  line-height: 100%;
}
#month-posts .date {
  font-size: 12px;
  font-weight: 400;
}
#month-posts p {
  padding: 30px 0;
  border-bottom: solid 2px rgb(210, 210, 210);
  font-size: 16px;
  font-weight: 400;
}

.profile .title {
  font-weight: 600;
}

.profile-img {
  width: 140px;
  margin: 30px auto 10px auto;
}

.profile-name {
  text-align: center;
  margin-bottom: 20px;
}

.profile-text {
  width: 250px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.nate {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 50px;
}
.nate a,
.nate span {
  padding: 5px 11px;
  margin: 0 2.5px;
  margin-bottom: 20px;
  color: rgb(46, 46, 46);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  border: solid 2px gray;
  background-color: white;
  color: gray;
  font-size: 13px;
}
.nate span {
  background-color: rgb(210, 210, 210);
}

.media-box2 {
  line-height: 200%;
}
.media-box2 .back {
  margin-top: 50px;
}
.media-box2 .back a {
  display: inline;
  border: solid 2px rgb(210, 210, 210);
  padding: 10px 20px;
}

@media screen and (max-width: 700px) {
  .flex {
    flex-direction: column;
  }
  .flex .right {
    margin: 0 auto;
    width: 90%;
  }
  .flex .card-info {
    max-width: 100%;
  }
  .profile {
    margin-top: 50px;
  }
  .float .float-left {
    float: left;
    padding-right: 20px;
  }
  .profile-img {
    margin-top: 0;
  }
  .profile-text {
    width: auto;
    margin-top: 30px;
    margin-bottom: 0;
  }
  .profile-name {
    margin-bottom: 10px;
  }
  .flex .right {
    margin-bottom: 50px;
  }
  .profile-img {
    width: 120px;
  }
}/*# sourceMappingURL=page.css.map */