* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    font-family: Georgia, "Times New Roman", serif;
    color: #4a3b18;
    background: #2b2722;
}

.folder {
    width: min(1000px, 100%);
}

.tabs {
    display: flex;
    justify-content: flex-end;
    gap: 0px;
}

.tabs a {
    font-size: 15px;
    text-decoration: none;
    color: #7c6a3c;
    padding: 11px 22px;
    background: #F2E936;
    background: linear-gradient(180deg, #F2E936, #BD9D2E);
    border: 1px solid #b8932f;
    border-bottom: none;
    border-radius: 3px 3px 0 0;
    margin-bottom: -1px;
}

.tabs a:hover {
    background: #eddca6;
}

.body {
    background: #F2E936;
    background: linear-gradient(180deg, #F2E936, #BD9D2E);
    border: 1px solid #b8932f;
    border-radius: 5px 0 5px 5px;
    padding: 34px 36px 40px;
    min-height: 550px;
}

.panel {
    display: none;
}

.panel:target {
    display: block;
}

.body:not(:has(.panel:target)) #home {
    display: block;
}

.panel h1 {
    margin: 0 0 16px;
    font-size: 30px;
}

.panel p {
    line-height: 1.7;
    font-size: 16px;
    max-width: 56ch;
}