* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    background: rgb(0,0,0);
    color: rgb(211, 188, 141);
}

body {
    width: 100%;
    height: 100%;
}

header {
    width: 100%;
    height: fit-content;
    padding: .5rem .75rem;
    position: fixed;
    top: 0;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    text-align: center;
}

main {
    width: 90%;
    margin: 5% 5%;
    margin-bottom: 10rem;
}

.box {
    width: 100%;
    height: fit-content;
    margin: 1rem 0;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.section-container {
    width: 48%;
    height: fit-content;
    padding: 1rem 1rem;
    border-bottom: 1px solid rgb(211, 188, 141);
}

.container-head {
    width: 100%;
    height: fit-content;
    padding: 0.5rem 0;
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
}

.container-body {
    width: 100%;
    height: fit-content;
    padding: 0.5rem 0;
    font-size: 1rem;
    text-align: left;
    margin-left: 1rem;
}

.container-full {
    width: 100%;
    height: fit-content;
    margin: 1rem 0;
    padding: 1rem;
    border-bottom: 1px solid rgb(211, 188, 141);
}

.full-header {
    width: 100%;
    height: fit-content;
    padding: 0.5rem 0;
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
}

.full-body {
    width: 100%;
    height: fit-content;
    padding: 0.5rem 0;
    font-size: 1rem;
    text-align: left;
    margin-left: 1rem;
}

footer {
    width: 100%;
    height: fit-content;
    position: fixed;
    bottom: 0;
    text-align: center;
    display: flex;
    flex-direction: row;
}

.ftr-left,
.ftr-center,
.ftr-right {
    width: 33.33%;
    height: 100%;
    padding: 0.25rem 0;
    font-size: .65rem;
    font-weight: 600;
    text-align: center;
}

.hdr-icon {
    width: 57px;
    display: inline-block;
    align-items: center;
    padding: 0 .25rem;
}

.ftr-right {
    width: 33.33%;
    height: 100%;
    font-size: .65rem;
    font-weight: 600;
    text-align: center;
    line-height: 5;
}