html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #131313;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif, sans-serif;
    line-height: 1.6;
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

#header {
    text-align: center;
    padding: 100px 0;
    background-color: #32074b;
}

.header-texts {
    max-width: 700px;
    margin: 0 auto;
}

.header-texts h1 {
    font-size: 50px;
    color: #465fdc;
    margin-bottom: 20px;
}

.header-texts h3 {
    font-size: 30px;
    color: #55a5eb;
    margin-bottom: 20px;
}

.header-texts p {
    font-size: 20px;
    color: #35bcbf;
}

nav {
    background-color: #9e59e0;
    padding: 20px;
}

.nav-logo-title {
    display: flex;
    align-items: center;
}

.nav-logo-title img {
    content: url();
    height: 40px;
    margin-right: 10px;
}

.nav-logo-title a {
    max-width: 50px;
    line-height: 0.9;
    font-size: 25px;
    color: #fff;
    text-decoration: none;
}

ul {
    list-style-type: none;
    display: flex;
    justify-content: right;
}

ul li {
    margin: 0 15px;
}

ul li a {
    font-size: 22px;
    color: #fff;
    text-decoration: none;
}

ul li a:hover {
    color: #ccc;
}

.content-aside {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.content {
    flex: 1;
    margin-right: 20px;
}

.content h2{
    font-size: 40px;
    color: #2a5e8b;
    margin-bottom: 20px;
}

.content h4{
    font-size: 30px;
    color: #55a5eb;
    margin-bottom: 20px;
}
.content p {
    font-size: 22px;
    color: #35bcbf;
    margin-bottom: 20px;
    justify-content:left;
}

aside {
    flex: 0 0 300px;
}

aside h2 {
    font-size: 32px;
    color: #55a5eb;
    margin-bottom: 20px;
}

aside ul {
    list-style-type: none;
    margin-bottom: 20px;
}

aside ul li {
    margin-bottom: 10px;
}

aside ul li a {
    font-size: 22px;
    color: #35bcbf;
    text-decoration: none;
}

aside ul li a:hover {
    color: #55a5eb;
}

.articles {
    margin-top: 50px;
    background-color: #280055;
    padding: 50px 0;
}

.articles table {
    width: 100%;
    border-collapse: collapse;
}

.articles .row-first, .articles .row-second {
    display: flex;
    justify-content: space-between;
    color:#007bff;
}

.article {
    width: 30%;
    padding: 20px;
    background-color: #63008b;
}

.article h3 {
    font-size: 30x;
    color: #55a5eb;
    margin-bottom: 10px;
}

.article p {
    font-size: 22px;
    color: #35bcbf;
    margin-bottom: 20px;
}

.article a {
    font-size: 22px;
    color: #007bff;
    text-decoration: none;
}

.article a:hover {
    color: #0056b3;
}

.article-long {
    width: 65%;
}

.creativity {
    background-color: #4d007d;
    padding: 50px 0;
    
}

.creativity h2 {
    font-size: 40;
    margin-bottom: 20px;
}

.mini-one, .mini-two, .mini-three, .mini-four {
    display: flex;
    margin-bottom: 40px;
}

.mini-content {
    margin-left: 20px;
}

.mini-content h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #55a5eb;
}

.mini-content p {
    font-size: 22px;
    color:#35bcbf;
}

footer {
    background-color: #2d004e;
    color: #025fbb;
    padding: 50px 0;
    text-align: center;
}

.footer-logo h3 {
    color: #007bff;
    font-size: 35px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #55a5eb;
    font-size: 22px;
}

.footer-form form {
    color: #35bcbf;
    margin-top: 20px;
}

.footer-form label {
    color: #2a5e8b;
    display: block;
    font-size: 22px;
    margin-bottom: 5px;
}

.footer-form input, .footer-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.footer-form button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 22px;
    cursor: pointer;
}

.footer-form button:hover {
    background-color: #0056b3;
}

.footer-credit {
    margin-top: 20px;
}

.footer-credit h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}