* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.4;
    background-color: #ffffff;
    color: #d60c0c;
    background-image: url('assets/background.jpg'); /* update path to your image */
    background-size: cover; /* cover entire viewport */
    background-position: center; /* center the image */
    background-repeat: no-repeat; /* don't tile */
    background-attachment: fixed; /* stays fixed on scroll */
    min-height: 100dvh; /* full viewport height */
}

header {
    padding: 1rem;
    text-align: center;
}

p{
   color: #000000;
   font-weight: bold;
}


footer {
    text-align: center;
    padding: 1rem;
    position: static;
    width: auto;
    margin-top: 2rem;
}

/* layout for main body split */
.container {
    display: flex;
    min-height: calc(100dvh - 4rem);
    margin: 0 3rem;
}

.left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left img {
    width: 82%;
    height: auto;
}

.right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right .content {
    text-align: center;
}

.right .content header h1 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.right .content main p {
    margin-bottom: 1.5rem;
}

.right .content footer p {
    font-size: 0.9rem;
    color: #555;
}

/* responsive: stack columns on narrow screens */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .left, .right {
        width: 100%;
    }
    .left {
        order: -1; /* place GIF on top */
    }
}
