body {
    background-color: #3d3835;
    background-image: url("Assets/Main_Background.png");
    background-size: cover; /* Make the image cover the entire background */
    background-position: center; /* Center the image in the viewport */
    margin: 0; /* Remove default body margin */
    padding: 0; /* Remove default body padding */
    height: 100%; /* Ensure the body takes up the full height */
}

.main_header {
    color: #f6efe5;
    text-align: center;
    font-size: 55px;

    text-shadow:
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px  1px 0 #000,
            1px  1px 0 #000;
    text-decoration: underline;
    z-index: 3;
    display: block;
    position: relative;
}

h2 {
    margin-top: 100px;
    color: #f6efe5;
    text-align: center;
    font-size: 40px;
    text-decoration: none;
}

h3 {
    margin-top: 100px;
    color: #f6efe5;
    text-align: center;
    font-size: 35px;
    text-decoration: none;
}

.categories {
    position: relative;
    color: #f6efe5;
    font-size: 35px;
    display: block;
    text-align: center;
    border-style: solid;
    border-width: 5px;
    border-color: #f7e8d1;
    width: 50%;
    margin: 0 auto;
    background-color: #3d3835;
    z-index: 3;
}

.category {
    color: #f6efe5;
    font-size: 35px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    padding: 5px;
}

.about_me {
    position: relative;
    width: 50%;
    display: block;
    text-align: center;
    margin: 0 auto;
    z-index: 3;
}

.about_me_image {
    width: 50%;
    border-color: #f6f1e5;
    border-style: solid;
    border-width: 3px;
}

.about_me_description {
    color: #f6efe5;
    font-size: 25px;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 5px;
}

.about_me_headers {
    border-top-color: #f7e8d1;
    border-top-style: solid;
    border-top-width: 3px;
    padding-top: 50px;
}

.titles {
    color: #f6efe5;
    font-size: 30px;
    display: block;
    text-align: center;
    text-decoration: underline;
}

.descriptions {
    color: #f6efe5;
    font-size: 25px;
    display: block;
    text-align: center;
    text-decoration: none;
}

.lines {
    position: absolute;
    width: 105%;
    height: 40%;
    border-style: solid;
    border-width: 6px; /* border-width applies to all sides */
    border-right-width: 0px;
    border-color: #f7e8d1;
    margin: -421px;
    margin-left: -38px; /* Added 'px' for units */
    padding-left: 30px; /* Added 'px' for units */
    z-index: 2;
    overflow: hidden; /* Hide overflow if content is larger than container */
    text-align: center; /* Center inline content horizontally */
}

.lines img {
    width: 100%;
    height: 180%;
}

