body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

header,
footer {
    background-color: #101820;
    color: #dfc9a2;
}

header,
.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-content,
.footer-content {
    padding: 30px 0 35px;
}

.header-content {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 1100px;
    width: 80%;
}

.footer-content {
    color: white;
    text-align: center;
}

.logo-container,
.footer-logo-container {
    height: 50px;
    width: auto;
}

.skc-back {
    color: #dfc9a2;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.skc-back:hover {
    color: #e0457b;
}

.color-band {
    display: flex;
    height: 10px;
}

.color-band_section {
    width: 25%;
}

.color-band_section:nth-child(1) {
    background-color: #003e52;
    content: " ";
}

.color-band_section:nth-child(2) {
    background-color: #676635;
    content: " ";
}

.color-band_section:nth-child(3) {
    background-color: #007ba9;
    content: " ";
}

.color-band_section:nth-child(4) {
    background-color: #88354d;
    content: " ";
}

@media (max-width: 700px) {
    .header-content {
        flex-direction: column;
        margin-left: 20px;
        margin-right: 20px;
        width: 100%;
    }

    .skc-back {
        margin-top: 15px;
    }
}

.spacer {
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spacer p {
    font-size: 3rem;
    font-weight: bolder;
    color: #cccccc;
}
