:root {
    --header-bg: rgb(199, 174, 142);
    --footer-bg: rgb(142, 124, 101);
    --note-color: rgba(211, 120, 0, 0.733);
    --content-bg: rgb(255, 238, 215);
    scroll-behavior: smooth;

}

body {
    min-width: 80rem;
    margin: 0 auto;
    font-family: "Inter", sans-serif; 
}

p {
    font-family: "Inter", sans-serif; 
    padding: 0;  
}

/* HEADER */
#header {
    padding: 0rem .5rem 0rem 2rem;
    background-color: var(--header-bg);
    font-weight: normal;
    text-transform: uppercase;
    color: white;
}

.title {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    width: 70rem;
}

.logo {
    width: 4rem;
    border-radius: 1rem;
    padding: .1rem;
    border: .1rem solid rgba(0, 0, 0, 0.648);
}

/* MAIN CONTAINER */

#content {
    margin: 0rem auto;
    padding: 0rem .4rem .4rem .4rem;
    width: 70rem;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    padding: 1.5rem;
    background-color: rgb(255, 250, 246);
}

#content .author {
    text-align: right;
    padding-right: 5rem;
    font-size: 1.3rem;
    margin: 1rem;
}

#content .abstract {
    height: 25rem;
    background-image: url(img/wypieki.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    border-radius: 2rem;
}

#content h3 {
    font-size: 1.4rem
}

#content img {
    padding: .1rem;
    border: .1rem solid black;
}

.note {
    background-color: rgba(255, 249, 245, 0.528);
    backdrop-filter: blur(.5rem);
    padding: 1rem;
    font-size: 1.1rem;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    border-left: .5rem solid var(--note-color);
}

.line{
    border-bottom: .15rem solid rgb(207, 207, 207);
}

.rank {
    list-style-type: upper-roman;
}

.rank a {
    text-decoration: none;
    color: #7b0000;
}

.rank a:hover {
    color: #000000;
}

/* FOOTER */

#footer {
    margin-top: 5rem;
    height: auto;
    padding: 1.5rem;
    background-color: var(--footer-bg);
    font-weight: normal;
    text-transform: uppercase;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

#footer p {
    text-align: center;
    padding: 0;
    margin: 0;
    text-transform: none;
}

.wrapper img {
    width: 35rem;
    padding: .1rem;
    border: .1rem solid black;
}

.comment {
    width: auto;
}