@font-face {
  font-family: 'Louisiana W00 Regular';
  src: local('Louisiana W00 Regular'), url('./fonts/louisianaW00Reg.woff') format('woff');
}

body {
    margin: 0;
    padding: 0;
    font-family: "Louisiana W00 Regular", sans-serif;
    font-size: 44px;
    height: 100%;
    background-color: #e0e0e0; /* Grey background outside of text area */
}

.container {
    width: 800px;
    margin: 0 auto;
}

.main-body {
    padding: 0 20px; /* Adjust padding to create space between text and vertical lines */
	border-left: 1px solid #000; /* Vertical line on the left */
    border-right: 1px solid #000; /* Vertical line on the right */
    background-color: #fff; /* White background for text area */
}

.centered {
    text-align: center; /* Center the "Hi, I'm" part */
}

.text-left {
    text-align: left; /* Align the rest of the text to the left */
	font-size: 30px;
}

.footer {
    height: 200px;
    background-color: #ccffcc;
    margin-top: auto;
    font-size: 25px;
    color: #4b5564;
    width: 798px; /* Adjusted width to fit between the vertical lines */
    border-left: 1px solid #000; /* Vertical line on the left */
    border-right: 1px solid #000; /* Vertical line on the right */
}

.footer_container {
    display: flex;
    justify-content: space-between; /* Adjust alignment */
    padding: 0 30px; /* Add padding to create space between text and vertical lines */
}

.footer_navi {
    list-style: none;
    padding: 0;
    margin: 0; /* Remove default margin */
}

.footer_navi-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

.copyright {
    padding: 0 20px;
	font-size: 25px
