@charset "utf-8";

body {
    background: #fdfdfd;
    color: #2c2c2c;
    font-family: "Georgia", "Hoefler Text", "Times New Roman", serif;
    font-size: 1.4rem; 
    line-height: 1.8;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 40px 20px;
    box-sizing: border-box;
}

h1, h2, h3 {
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.3;
}

p {
    margin-bottom: 2rem;
    text-align: left;
}

a {
    color: #336600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: 0;
    margin-right: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
}


@media screen and (max-width: 600px) {
    body {
        font-size: 1.2rem;
    }
}