body {
    background: linear-gradient(to bottom right, #12284c, #203a69);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

nav {
    background-color: #135D66;
    color: black;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.nav-logo-title img {
    width: 50px;
    height: auto;
}

.nav-logo-title a {
    color: #a6d7e8;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #F5F7F8;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

#header {
    color: #a6d7e8;
    padding: px;
    text-align: center;
}

.header-texts h1 {
    font-size: 48px;
    color: white;
    
}

.header-texts h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #F6F5F5;
    font-weight: 750;
    
}

.header-texts p {
    font-size: 18px;
    line-height: 1.6;
    color: #F6F5F5;
    font-weight: bold;
    opacity: 80%;
    text-align: justify;

}

.content-first h2,
.content-second h2 {
    font-size: 36px;
    color: white;
    font-weight: bolder;
}
.content-second h4 {
    color: #F6F5F5;
    font-weight: 900;
}

.content-first p,
.content-second p {
    font-size: 18px;
    line-height: 1.6;
    color: #F6F5F5;
    font-weight: bold;
    opacity: 60%;
    text-align: justify;
}

#articles {
    padding: 50px 0;
}

aside {
    display: flex;
    color: #F6F5F5;
}
.articles .article,
.articles .row-second .article-long {
    padding: 20px;
    background-color: #AFD198;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 90%;
}
img{
    max-width: 50%;
    max-height: 50%;
}
.article img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid black;
    overflow: hidden;
}

.articles .article::before,
.articles .row-second .article-long::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: -3;
}
.articles .article:hover,
.articles .row-second .article-long:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.articles h3 {
    margin-top: 0;
    font-size: 28px;
    color: #FFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.articles p {
    color: black;
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 1px 1px 1PX #fff;
}

.articles a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    background-color: #8576FF;
    color: black;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.articles a:hover {
    background-color: #7BC9FF;
}
.creativity-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 20px;
    text-align: justify;
    color: white;
}
.creativity-wrapper p {
    text-align: justify;
    color: #F6F5F5;
    opacity: 70%;
}

.mini-one img,
.mini-two img,
.mini-three img,
.mini-four img {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 175px;
    height: 150px;
    border-radius: 20px;
    border: 1px solid black;
    box-shadow: 3px solid black;
    overflow: hidden;
}


@media screen and (max-width: 768px) {
    .articles .article,
    .articles .row-second .article-long {
        width: 100%;
        margin-bottom: 30px;
    }
    .articles .row-first,
    .articles .row-second {
        flex-direction: column;
    }

    .articles .article-long {
        display: block;
    }
}

footer {
    color: white;
    padding: 50px;
    text-align: center;
}

.footer-logo h3 {
    font-size: 24px;
}

.footer-form p {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-form label {
    font-size: 18px;
}

.footer-form input[type="text"],
.footer-form select {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: none;
    border-radius: 5px;
}

.footer-form button {
    padding: 10px 20px;
    background-color: #1C1678;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-form button:hover {
    background-color: #9400FF;
}

.footer-credit h3 {
    font-size: 10px;
    text-align: right;
    text-transform: capitalize;
}
