* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    background: url('assets/images/camo-background.png') repeat center center;
    font-family: Merriweather, serif;
}

.header-container, .hero-container, .footer-container {
    display: flex;
    color: white;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 5% 10%;
    margin: 0 auto;
}

.header-container h1 {
    justify-content: center;
    text-align: center;
    font-size: 10vw;
    font-weight: bold;
    color: #E63731;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transform: scale(1.25); /* Scales the text visually */
    transform-origin: center; /* Ensures the scaling happens from the center */
    display: inline-block; /* Ensures scaling only affects the text itself */
    -webkit-text-stroke: 2px white;
}

.hero-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.hero-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: .25vw solid #FCDB57;
    border-radius: 5%;
}

.hero-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 1;
    flex: 1;
}

.hero-item h2 {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    font-size: 2vw;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
}

.pathfinder, .pacecounter, .navigator, .cartographer {

}

/*Password Styling*/
.password-container {
    text-align: center;
    margin: 1vw;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
input[type="password"] {
    padding: 10px;
    font-size: 16px;
}
button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#content, #content2 {
    display: none;
    text-align: center;
}

footer {
    color: white;
    background: #03071E;
    padding: 1vw;
    display: flex;
    flex-direction: column;
}

footer img {
    width: 10vw;
}

.motto {
    display: flex;
    align-items: center;
}
.footer-container {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 1em;
    padding: 1vw;
    flex-wrap: wrap;
}

footer a {
    color: white; /* Text and icon color */
    text-decoration: none;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
    transition: transform 0.3s ease;
}

footer a:hover {
    color: #DC2F02;
    transform: scale(1.05);
    border-bottom: 0 transparent;
}

footer i {
    font-size: 1.5em;
}

footer p {
    font-size: 1vw;
}

.copyright {
    border-top: 1px solid;
    padding: 1vw;
}