@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    background-image: url('japan.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Press Start 2P', cursive;
    color: #4A5759;
    margin: 0;
    padding: 200px;
}

#wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(68, 98, 74, 1);
    border: 2px solid #575757;
    padding: 10px;
}

#header-container {
    text-align: center;
    padding: 20px;
}

.site-title {
    font-size: 1.5em;
    color: #BC8F8F;
}

.header-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.banner-text {
    font-size: 1em;
    margin-right: 10px;
}

.banner-image {
    height: 30px; 
}

#content-container {
    display: flex;
    gap: 15px;
}

#left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#right-column {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.box {
    background-color: #A0D6A1;
    border: 2px solid ##BC8F8F;
    padding: 15px;
    border-radius: 5px;
}

.about-me-box {
    background-color: #A0D6A1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cat-pfp {
    width: 80px;
    height: 80px;
    border: 2px solid #4A5759;
    margin-bottom: 10px;
    object-fit: cover; 
    border-radius: 50%; 
}

h2 {
    margin-top: 0;
    font-size: 1em;
    text-align: center;
}

p, ul {
    font-size: 0.8em;
    line-height: 1.5;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 5px;
}