.main_content {
    flex: 1 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-div {
    background-color: var(--dark-bg);  
    border-radius: 15px;
    max-width: 550px;
    margin: 10px;
    padding: 20px;
    flex: 0 1 auto;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.05); 
}

.content-div h2 a {
    color: var(--link-color);
    text-decoration: none;
}

.content-div h2 a:hover {
    text-decoration: underline;
}

.content-div p a {
    color: var(--link-color);
    text-decoration: none;
}

.content-div p a:hover {
    text-decoration: underline;
}

.content-div:hover {
  transform: scale(1.01);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

.header-container img {
    max-height: 80px;
    max-width: 150px;
    border-radius: 3px;
}