body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #faf7f2;
    font-family: sans-serif;
}

#container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 60px 20px;
}

.home__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 800px;
}

.article__info-container {
    padding-bottom: 16px;
}

.code__block {
    padding: 20px;
    background-color: rgb(240, 240, 240);
    white-space: pre-wrap;
    word-wrap: break-word;
}

.reasons__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reasons__list-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tab-button-container {
    display: flex;
    gap: 10px;
}

.tab-button {
    background-color: none;
    border: none;
    cursor: pointer;
}

.tab-button.active {
    border-bottom: 1px solid black;
}

.tab-block {
    display: none;
}

.tab-block.active {
    display: block;
}

@media only screen and (max-width:800px) {
    .article__container {
        width: 100%;
    }
}

p {
    font-family: serif;
    font-size: 1.125rem;
}

ul,
ol {
    padding: 0;
}

.header {
    padding-top: 20px;
    padding-left: 20px;
}

.header-1 {
    font-size: 2rem;
}

.header-2 {
    padding-bottom: 16px;
}

.header-3 {
    padding-bottom: 16px;
    font-size: 1.25rem;
}