body {
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 89vw;
    margin: 0 auto;
    padding-top: 76px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    height: calc(100vh - 76px);
    overflow: hidden;
}

.docs {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-y: auto;
}

a {
    display: block;
    margin: 10px 0;
    text-align: center;
    text-decoration: none;
    color: #6D462C;
    font-size: 18px;
}

a:hover {
    color: #A8AB7B;
}