@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
.title {
  font-family: "Roboto", sans-serif;
  font-size: 35px;
  font-weight: 700;
}

.title-text {
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-weight: 700;
}

.title-content {
  font-size: 20px;
  font-weight: 400;
}

@media (min-width: 1000px) {
  .main, aside {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  .title-content {
    width: 100%;
  }
}
@media (min-width: 767px) {
  .main, aside {
    width: 80%;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .title-content {
    width: 80%;
  }
}
@media (min-width: 599px) {
  .main, aside {
    width: 80%;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .title-content {
    width: 80%;
  }
}
body {
  width: 100%;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
  margin: 0 auto;
}

ul {
  list-style: none;
}

a {
  color: #1e1e2b;
  text-decoration: none;
}

a:hover {
  color: #a0631e;
}

.flex {
  display: flex;
}

.main {
  background-color: #f8f8f7;
  gap: 5%;
  flex-direction: row;
  padding: 20px 50px;
  margin: 0 auto;
}

.main_content {
  background-color: #f8f8f7;
}

.title {
  margin: 20px 0;
}

.title-text {
  margin: 20px 0;
}

.title-content {
  margin: 20px 0;
}

.sidebar {
  background-color: #e7e7e9;
  padding: 20px 30px;
}