.container {
  height: 95.2%;
}

.header {
  width: 100%;
  background-color: rgb(181, 181, 181);
  padding: 15px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content {
  display: flex;
  width: 100%;
  min-height: 100%;
  height: 100%;
}

.navigation {
  display: flex;
  padding-top: 30px;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  width: 300px;
  height: 100%;
  min-height: 100%;
  background-color: rgb(181, 181, 181);
}

.navigation a {
  background-color: rgb(0, 214, 214);
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navigation a:hover {
  color: white;
}

.add-sets,
.history {
  padding: 20px 30px;
  width: 100%;
}

.months {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.months a {
  width: 100%;
  background: #d6d6d6;
  padding: 20px 30px;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.months a:hover {
  background: #a9a9a9;
}

@media only screen and (max-width: 1000px) {
  .container {
    width: 100%;
    min-width: 100%;
    padding: 0px;
  }
}
