body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: "inter";
    background-color: #F6F7F8;
}

main {
    margin-left: 232px;
    padding: 180px 64px 0 64px;
    height: 100vh;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow-x: auto;
}

h1 {
    font-size: 61px;
    font-weight: 700;
    line-height: 73.2px;
}

h2 {
    font-size: 27px;
    font-weight: 400;
    line-height: 32.4px;
    color: #2A3647;
}

h3 {
    color: #2A3647;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin: 0;
}

h4 {
    margin: 0;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 625px;
    margin-bottom: 56px;
}

aside {
    position: fixed;
    z-index: 4;
}

header {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
}

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

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #a8a8a8 #ffffff;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 8px;
    height: 4px;
}
*::-webkit-scrollbar-track {
    background: #ffffff;
}
*::-webkit-scrollbar-thumb {
    background-color: #a8a8a8;
    border-radius: 10px;
    border: 0px solid #ffffff;
}