body {
    margin: 0;
    padding: 25px;

    background: url("twee.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    font-family: Fixedsys, "Courier New", monospace;
    font-size: 13px;
    color: #39283b;
}


/* ENTIRE WEBSITE */

.page {
    width: 850px;
    margin: 0 auto;
}


/* HEADER */

.header {
    text-align: center;

    background: #dff7d5;
    border: 2px solid #618a50;

    padding: 15px;
    margin-bottom: 12px;

    box-shadow: 4px 4px #3c5832;
}

.header h1 {
    margin: 0;
    font-size: 32px;
    text-shadow: 2px 2px #ffffff;
}


/* TWO COLUMN LAYOUT */

.layout {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}


/* SIDEBAR */

.sidebar {
    width: 220px;
    flex-shrink: 0;
}


/* MAIN CONTENT */

.content {
    flex: 1;
}


/* BOXES */

.box {
    background: #dff7d5;

    border: 2px solid #618a50;
    border-radius: 4px;

    padding: 10px;
    margin-bottom: 12px;

    box-shadow: 3px 3px #3c5832;
}


/* BOX HEADERS */

.box h2 {
    font-size: 15px;
    text-align: center;

    background: #b8dda9;

    border-bottom: 1px dotted #618a50;

    margin: -10px -10px 10px -10px;
    padding: 5px;
}


/* PROFILE */

.profile img {
    display: block;

    width: 110px;
    height: 110px;

    object-fit: cover;

    margin: 10px auto;

    border-radius: 50%;
    border: 3px double #618a50;
}


/* BLOG POSTS */

.blog-post h1 {
    margin-top: 0;
    text-align: center;
}

.post-text {
    font-size: 18px;
    line-height: 1.6;
}

.date {
    text-align: center;
    font-style: italic;
    font-size: 14px;
}


/* LINKS */

a {
    color: #714c78;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    color: #d45fa7;
    text-decoration: underline;
}


/* PHOTO BOOK */

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;

    
    border: 3px #714c78;
}

.photo {
    width: 100%;
    display: block;

    border: 2px solid #618a50;
    border-radius: 8px;

    box-sizing: border-box;

    transition: transform 0.15s ease;
}

.photo:hover {
    transform: scale(1.03);
}

.photo:nth-child(odd) {
    transform: rotate(-1deg);
}

.photo:nth-child(even) {
    transform: rotate(1deg);
}


/* FOOTER */

footer {
    margin-top: 15px;

    padding: 12px;

    text-align: center;

    background: #dff7d5;
    border: 2px solid #618a50;

    box-shadow: 3px 3px #3c5832;
}


/* MOBILE */

@media (max-width: 900px) {

    .page {
        width: 100%;
    }

    .layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}