*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'sans-serif';
    margin: 0;
    display: flex;
    flex-direction: column;
    height: auto;
    flex-wrap: nowrap;
    user-select: none;
}

header.container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
    background-color: #FF1801;
    position: sticky;
    top: 0;
    margin-bottom: 10px;
}

header.container .logo img {
    width: 80px;
}

header.container .nav-link ul {
    display: flex;
    gap: 1rem 5rem;
    padding-inline: 1rem;
}

header.container .nav-link li {
    list-style-type: none;
}

header.container .nav-link a {
    text-decoration: none;
    color: #fcfdff;
    border-radius: 30px;
    transition: all .2s ease-in-out;
    font-size: 1rem;
    font-weight: 600;
    padding: .2rem 1rem;
}

header.container .nav-link a:hover {
    color: #FF1801;
    background-color: #fcfdff;
    font-weight: bold;
}

main {
    max-width: 1200px;
    width: 100%;
    margin-inline: auto;
    padding: 2rem 4rem;
    display: flex;
    flex-flow: column wrap;
}

main .about .about-img img {
    width: 350px;
}

main .about {
    flex: 1;
    display: flex;
    align-items: flex-start;
    text-align: justify;
}

main .about .about-desc .title {
    font-size: 3rem;
    margin-block: 0.1rem;
}

main .about .about-desc a {
    text-decoration: none;
    display: inline-block;
    margin-top: 0.35rem;
    background-color: #fcfdff;
    color: #FF1801;
    padding: .8rem 1.8rem;
    border-radius: 700px;
    cursor: pointer;
    border: 2px #FF1801 solid;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all .2s ease-in-out;
}

main .about .about-desc a:hover {
    border: 2px solid #fcfdff;
    color: #fcfdff;
    background-color: #FF1801;
}

main .article-container {
    width: 75%;
    flex: 5;
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem 2rem;
}

main .article-container .article-card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 20px;
    margin: 10px;
    text-align: justify;
}

main .article {
    display: flex;
}

.tables {
    border-collapse: collapse;
    width: 100%;
}

.tables td, .tables th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.tables tr:nth-child(even){
    background-color: #f1f1f1;
}

.tables tr:hover {
    background-color: #FF1801;
    color: white;
}

.tables th {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #FF1801;
    color: white;
    text-transform: uppercase;
}

aside {
    flex: 1;
    width: 25%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    text-align: center;
    align-self: flex-start;
}

aside table {
    text-align: justify;
    padding: 5px;
}

aside .founder img {
    width: 150px;
    border-radius: 10px;
}

footer {
    width: 100%;
    background-color: #FF1801;
    color: #fcfdff;
    text-align: center;
    font-weight: bold;
}

@media screen and (max-width: 999px) {
    header.container {
        flex-direction: column;
    }
    header.container .nav-link ul {
        flex-wrap: wrap;
        column-gap: .5rem;
    }
    main .content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        padding: 20px;
    }
    main .article {
        flex-wrap: nowrap;
    }
}