body {
    background: #f2f0ea;
    max-width: 850px;
    min-width: 700px;
    margin: auto;
    padding: 20px;
    color: #023e47;
    font-size: 14pt;
    line-height: 1.4;
    cursor: context-menu;
    text-align: justify;
    hyphens: auto;
    font-family: "Alegreya";
}

.maincolumn {
    flex: 0 0 60%;
    margin-right: 80px;
}

.row {
    display: flex;
    align-items: flex-start;
}

ul {
    padding-left: 22px;
}

li {
    margin-bottom: 10px;
}

a {
    color: rgb(184, 28, 28);
    text-decoration: none;
}
  
a:hover, #menu a:hover { /* the color change when hovering over links should be the same for all links */
    color: rgba(255, 145, 0, 0.75);
}

.styled-quote {
    text-align: justify;
    border-left: 2px solid black;
    padding-left: 10px;
    margin: 0 0;
    max-width: 100%;  /* Prevents overflow */
    width: 100%;      /* Ensures it adapts to the column */
    box-sizing: border-box; /* Includes padding in the width */
}

blockquote {
    text-align: justify;
    border-left: 2px solid black;
    padding-left: 10px;
    margin: 0 0;
    max-width: 100%;
    width: 100%;  
    box-sizing: border-box; 
}

blockquote cite {
    display: block;
    margin-top: 8px;
    font-style: italic;
    text-align: left;
    position: relative;
    padding-left: 1em;
}


blockquote cite::before {
    content: "\2014";
    position: absolute;
    left: 0;
}

button {
    cursor: pointer;
    background-color: #f2f0ea;
    color: #023e47;
    text-align: center;
    font-size: 1em;
    padding: 4px;
    margin: 5px;
    border-radius: 2px;
    border: 4px solid #023e47;
    width: 98%;
    transition-duration: .5s;
    font-family: "Alegreya";
}
  

button:hover {
    background-color: #023e47;
    color: orange;
}

.my-badge::part(base) {
    color:white;
    font-style: italic;
    background-color: rgb(21, 181, 221);
} 