body {
    margin: 0px;
    padding: 0px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

header {
    background-color: rgb(255,255,255);
    padding: 10px 0px;
    box-shadow: 0px 3px 10px 0px rgb(148, 148, 148);
}

header > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 20px;
}

nav {
    background-color: transparent;
}

nav > ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
}

nav > ul > li {
    margin: 0px 15px;
}

nav > ul > li > a {
    color: rgb(68,68,68);
    text-decoration: none;
    font-size: 16px;
}

nav > ul > li > a:hover {
    text-decoration: underline;
}

footer {
    background-color: rgb(44,45,47);
    color: rgb(255,255,255);
    text-align: center;
    padding: 10px 0px;
    position: fixed;
    width: 100%;
    bottom: 0px;
}

footer > a {
    color: rgb(255,255,255);
}

section {
    margin-bottom: 40px;
}

td {
    width: 50%;
}

td > img {
    width: 70%;
    /* margin-left: 50%;
    transform: translateX(-50%); */
}

p {
    text-align: justify;
}

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

.placeholder-img {
    width: 100%;
    height: 200px;
    background-color: rgb(204,204,204);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(51,51,51);
    font-size: 20px;
}

.section-container {
    width: 100%;
    height: 200px;
    display: flex;
}

.full-length {
    width: 100%;
    aspect-ratio: auto;
}

/* .section-container > img.centered {
    position: absolute;
    aspect-ratio: auto;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
} */

#logo {
    height: 50px;
    aspect-ratio: auto;
}
