
/* Editable Variables */
:root {
    --background-color: #4169E1; /* Change background here *ff5733/
    --font-color: #333333;        /* Change font color here */
}

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

body {
    background-color: var(--background-color);
    color: var(--font-color);
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.center-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.info, .contact {
    margin-top: 40px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

input, textarea {
    padding: 10px;
    font-size: 1rem;
    width: 100%;
}

button {
    background-color: var(--font-color);
    color: var(--background-color);
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    opacity: 0.8;
}

.article-post {
    margin-top: 60px;
    background-color: #ffffff;
    color: #000000;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.article-image {
    width: 30%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.article-text h2 {
    margin-bottom: 10px;
    color: #333333;
}

.article-text p {
    font-size: 1rem;
    line-height: 1.6;
}

.article-text a {
    color: #4169E1;
    text-decoration: underline;
}
/* Animation on load */
.article-post {
    animation: fadeInUp 1s ease-out;
}

/* Subtle zoom on image hover */
.article-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-image:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Color change on title hover */
.article-text h2 {
    transition: color 0.3s ease;
}
.article-text h2:hover {
    color: #1e40af; /* Darker blue for hover */
}

/* Keyframe animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



footer {
    margin-top: 60px;
    font-size: 0.8rem;
}
