* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', serif;
}

body {
    background-color: #050517; 
    color: #e0e0e0;
}

.navbar {
    background: #0a0731; 
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #1a1a4d;
}

.navbar__container { 
    display: flex;
    justify-content: space-between;
    height: 88px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px; 
}

#navbar__logo {
    color: #fff;
    text-shadow: 0 0 10px rgba(75, 55, 255, 0.8);
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 3.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: #ced4ff; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 2px;
    height: 100%;
    transition: 0.2s;
    margin-left: 14px;
}

.navbar__links:hover {
    color: #82aaff; 
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.button, .upload-button, .upload-submit {
    padding: 10px 20px;
    background: #1a1a4d;
    color: #fff;
    border: 1px solid #4B37ff;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover, .upload-button:hover, .upload-submit:hover {
    background: #4B37ff;
    box-shadow: 0 0 15px rgba(75, 55, 255, 0.4);
}

.article-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #050517;
}

.article-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #82aaff; 
}

.article-subtitle {
    font-size: 1.75rem;
    margin-bottom: 5px;
    color: #5c7cff;
}

.article-subtitle2, .article-subtitle3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #a6b1ff;
}

.article-body {
    font-size: 20px;
    line-height: 1.8;
    color: #d1d1d1; 
    margin-bottom: 20px;
}

.navbar__links.active {
    color: #82aaff;
    font-weight: 900;
    text-decoration: underline;
}

.uploaded-image {
    display: block;
    margin: 20px auto;
    max-width: 80%;
    height: auto;
    border: 2px solid #1a1a4d;
    border-radius: 8px;
}

.image-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.article-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 48%; 
    height: auto;
    padding-bottom: 20px;
}
