@media (max-width: 700px) {
.right-image {
    align-self: center;
}

.left-image {
    align-self: center;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 10px;
    background-color: #1a1a1a;
    color: #ffffff;
}


.header2 {
    line-height: 120%;
}

.header {
    line-height: 180%;
    text-align: center;
    color: #ff1493; /* Deeppink */
    margin-bottom: 5px;
    font-size: 0.8em;
    #letter-spacing: -0.05em;
    text-shadow: 0 0 30px rgba(255, 19, 147, 0.6);
}

.tabs {
    background: rgba(45, 45, 45, 0.8);
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
    gap: 4vw;
    margin-bottom: 3em;
}
.tab1 {
    width: 25vw;
}
.tab {
    padding: 1em 0em;
    #border-radius: 10px;
    cursor: pointer;
    font-size: 4vw;
    background: rgba(45, 45, 45, 0);
    color: deeppink;
    border: deeppink;
}
.tab:hover {
    background-color: #ff007f; /* Slightly darker pink */
    #transform: translateY(-2px);
    color: black;
}
.tab.active {
    background-color: #ff007f; /* Slightly darker pink */
    #box-shadow: 0 3px 8px rgba(255, 19, 147, 0.4);
    color: black;
}
.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(45, 45, 45, 0.9);
    border-radius: 10px;
    #box-shadow: 0 0 10px rgba(255, 19, 147, 0.3),
               inset 0 0 10px rgba(255, 19, 147, 0.1);
}
.article-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.article-item {
    background-color: #ff69b4; /* Light pink */
    padding: 35px;
    width: 70vw;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(255, 19, 147, 0.2);
}
.article-item img {
    max-width: 500px;
    width: 70vw;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}
.left-image .article-item img {
    align: left;
    margin-right: 20px;
}
.right-image .article-item img {
    float: right;
    margin-left: 20px;
}
.article-summary {
    font-weight: bold;
    color: black;
    margin-bottom: 15px;
    font-size: 2.5em;
    line-height: 1em;
}
.article-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1em;
    font-size: 2em;
}

}



@media (min-width: 700px) {


.right-image {
    align-self: center;
}
.left-image {
    align-self: center;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 10px;
    background-color: #1a1a1a;
    color: #ffffff;
}


.header2 {
    line-height: 120%;
}

.header {
    line-height: 180%;
    text-align: center;
    color: #ff1493; /* Deeppink */
    margin-bottom: 5px;
    font-size: 2.0em;
    #letter-spacing: -0.05em;
    text-shadow: 0 0 30px rgba(255, 19, 147, 0.6);
}

.tabs {
    background: rgba(45, 45, 45, 0.8);
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.tab1 {
    width: 25vw;
}
.tab {
    padding: 12px 24px;
    #border-radius: 10px;
    cursor: pointer;
    font-size: 2vw;
    background: rgba(45, 45, 45, 0);
    color: deeppink;
    border: deeppink;
}
.tab:hover {
    background-color: #ff007f; /* Slightly darker pink */
    #transform: translateY(-2px);
    color: black;
}
.tab.active {
    background-color: #ff007f; /* Slightly darker pink */
    #box-shadow: 0 3px 8px rgba(255, 19, 147, 0.4);
    color: black;
}
.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(45, 45, 45, 0.9);
    border-radius: 10px;
    #box-shadow: 0 0 10px rgba(255, 19, 147, 0.3),
               inset 0 0 10px rgba(255, 19, 147, 0.1);
}
.article-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.article-item {
    background-color: #ff69b4; /* Light pink */
    padding: 35px;
    width: 70vw;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(255, 19, 147, 0.2);
}
.article-item img {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}
.left-image .article-item img {
    align: left;
    margin-right: 20px;
}
.right-image .article-item img {
    float: right;
    margin-left: 20px;
}
.article-summary {
    font-weight: bold;
    color: black;
    margin-bottom: 15px;
}
.article-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

}
