/* base styles */
body {
    background-color: black;
    font-family: ltc-goudy-oldstyle-pro, serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 60px;
    font-size: 18px;

    margin-left: 7.5%;
    margin-right: 7.5%;
}
p {
    margin: 0;
    padding: 15px 0;
}

b i,
i b {
    font-family: ltc-goudy-oldstyle-pro, serif;
    font-weight: 700;
    font-style: italic;
}

i {
    font-family: ltc-goudy-oldstyle-pro, serif;
    font-weight: 400;
    font-style: italic;
}

b {
    font-family: ltc-goudy-oldstyle-pro, serif;
    font-weight: 700;
    font-style: normal;
}

/* header partial */
.header {
    margin: 40px 0 60px 0;
}
.header .logo a {
    font-size: 30px;
    text-decoration: none;
    color: white;
    display: inline-block;
}
.header .links {
    color: white;
    margin-top: 5px;
    display: flex;
    gap: 20px;
}
.header .links a {
    text-decoration: none;
    color: white;
}

.header .links a.active {
    color: greenyellow;
}
