
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Georgia, serif;
    line-height: 1.6;
    background-color: #f2f0ec;
    color: #4d4d4d;
}


.wrapper {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
}


h1 {
    color: #4d4d4d;
    margin-bottom: 20px;
}

h2 {
    color: #d4601a;
    margin-bottom: 20px;
}

h3 {
    color: #d4601a;
    margin-bottom: 10px;
}


#navigation {
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
    padding: 10px 0;
    margin-bottom: 20px;
}

li {
    display: inline;
    list-style-type: none;
    margin-right: 20px;
}

a:link, 
a:visited, 
a:active {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}


p {
    margin-bottom: 15px;
}


blockquote {
    font-style: italic;
    background-color: #f0f0f0; 
    padding: 15px;
    border-left: 4px solid #555;
    margin: 0;
}


#all-content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


#main-content {
    flex: 2;
    min-width: 300px; 
}


#secondary-content {
    flex: 1;
    min-width: 200px; 
    background: #d4601a;
    padding: 15px;
    border-left: 2px solid #4E0102;
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    text-align: right;
}

{
    #all-content {
        flex-direction: column;
    }

    #secondary-content {
        justify-content: flex-start;
        text-align: left;
        border-left: none;
        border-top: 2px solid #4E0102;
        margin-top: 20px;
    }
}

#topBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px;
}