body {
    margin: 0;
    padding: 0;
    font-family: 'Liberation Mono', monospace;
}

.section {

    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 20%;
    box-sizing: border-box;
}

.title p {
    text-align: left;
    font-size: 150%;
    margin: 0;
}


h1 {
    margin: 0;
}

h3 {
    margin: 5px;
}

.black-section {
    background-color: #333333;
    color: rgb(209, 213, 214);
}

.white-text {
    color: #fff;
}

.white-section {
    background-color: #eef5db;
    color: black;
}

.logo-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    padding: 0;
    margin: 0;
}

.button-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    padding: 0;
    margin: 0;
    align-items: center;

}

.button-list li {
    margin: 10px;
}

.btn-white {
    display: inline-flex;
    border: 1px solid white;
    background-color: transparent;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 500;
    align-items: center;
    max-height: 30px;
    min-height: 30px;
}

.btn-white:hover {
    border: 2px solid #87af5f;
    transition: 0.1s;
    color: #87af5f;
    font-weight: 600;
}

.logo-list li {
    margin: 10px;
}


.logo-list img {
    min-height: 15px;
    max-height: 25px;
}

.justified-paragraph {
    font-size: 14px;
    justify-content: left;
    max-width: 600px;
    margin: 5px;
}

/* Media Query for Responsive Layout */
@media (max-width: 600px) {
    .logo-list {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    tr {
        display: inline-block;
        flex-wrap: wrap;
        width: 100%;
    }

    .section {
        padding-left: 12%;
        padding-right: 12%;
    }
}

table {
    width: 100%;

}

tr {
    display: inline-block;
    width: 100%;
}

td {
    white-space: nowrap;
    width: 100%;
    text-align: left;
}


footer {
    background-color: #333333;
    position: absolute;
    width: 100%;

}

footer>p {
    text-align: center;
    color: rgb(209, 213, 214);
}

.company-site {
    color: #181818;
}