body {
    background-color: #2b1d0e; /* Dusty brown background to mimic Mars' surface */
    color: #d8b779; /* Sandy, muted yellow for text */
    font-family: 'Courier New', Courier, monospace; /* Industrial typewriter font */
    margin: 0;
    padding: 0;
}

.cover_img {
    margin: 5px;
    width: 100%;
    filter: sepia(0.6); /* Adds a dusty look */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6); /* Shadow for depth */
}

.horz_cont {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.side_chevs {
    position: fixed;
    width: 40px;
    background-image: url('../chevron.svg');
    background-repeat: repeat-y;
    background-size: contain;
    background-position: center;
    opacity: 0.7; /* Faded effect */
}

.home-button {
    font-family: "Courier New", Courier, monospace;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.1em;
    padding: 15px 30px;
    margin: 10px;
    color: #1c0b00; /* Deep brown */
    background-color: #a04d23; /* Mars-like reddish-orange */
    border: 4px solid #6f3b18; /* Darker brown border */
    cursor: pointer;
    box-shadow: 6px 6px 0 #40210f; /* Strong shadow for terrain-like depth */
    text-decoration: none;
    display: inline-block;
}

.home-button:hover {
    background-color: #b05c34; /* Lighter reddish-brown on hover */
    box-shadow: 10px 10px 0 #5a2e13; /* More exaggerated shadow */
    transform: translate(-4px, -4px); /* Slight "jump" effect */
}

.home-button:active {
    background-color: #a04d23;
    box-shadow: 4px 4px 0 #3f1f0c; /* Reduced shadow when pressed */
    transform: translate(0, 0);
}
p{
    margin:10px;
}
.principle {
    font-family: "Courier New", Courier, monospace;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #3a2b1a; /* Dark brown, like Martian rock */
    color: #d8b779;
    border: 4px solid #6f3b18;
    padding: 20px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.1em;
    box-shadow: 10px 10px 0 #40210f;
    width: 80%;
    max-width: 600px;
}

.principle:hover {
    background-color: #4d3922;
    box-shadow: 15px 15px 0 #5a2e13;
    transform: translate(-5px, -5px);
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 70px;
    padding-top: 10px;
    border: 4px solid #40210f; /* Mars rock border */
    box-shadow: inset 0 0 10px #1a0e06, 0 0 15px #1a0e06; /* Glow effect */
    background-color: #4d3a2b; /* Dusty rock grey */
}

.avatar {
    width: 150px;
    height: 150px;
    border: 3px solid #6f3b18; /* Rusted border */
    box-shadow: inset 0 0 10px #2a1a0f, 0 0 5px #2a1a0f; /* Bevelled effect */
    margin-bottom: 10px;
}

.info-section {
    background-color: #6f4a2f; /* Rusty brown */
    border: 2px solid #40210f; /* Rugged border */
    padding: 10px;
    box-shadow: inset 0 0 5px #1a0e06, 0 0 5px #000;
}

button {
    width: 150px;
    padding: 10px;
    margin: 10px;
    border: 2px solid #6f3b18; /* Rust-like border */
    background-color: #a04d23; /* Mars rock reddish-orange */
    color: #d8b779; /* Sandy yellow text */
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace;
    cursor: pointer;
    box-shadow: inset 2px 2px 5px #3f1f0c, 0 0 5px #40210f; /* Industrial button effect */
    transition: all 0.2s ease;
}

button:hover {
    background-color: #b05c34;
    color: #ffffff;
}

footer {
    padding: 20px;
    background-color: #2b1d0e; /* Dark Martian terrain */
    color: #d8b779; /* Sandy text */
    font-size: 14px;
    text-align: center;
}

.dusty-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 3rem;
    color: #d4d4d4;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px #d4d4d4;
    animation: fadeInDust 2s ease-out forwards;
    margin: 20px;
    height: 200px;
    width: 80%;
}

.dusty-title::before,
.dusty-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(164, 114, 64, 0.3) 0%, rgba(0, 0, 0, 0) 80%);
    opacity: 0.5;
    animation: dustParticles 5s infinite linear;
    pointer-events: none;
}

.dusty-title::after {
    animation-delay: 2s;
}

/* Keyframes for fade-in and dusty effect */
@keyframes fadeInDust {
    0% {
        color: rgba(164, 114, 64, 0);
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0);
    }
    100% {
        color: #d4d4d4;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px #d4d4d4;
    }
}

@keyframes dustParticles {
    0% {
        transform: translate(-50px, -50px) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(50px, 50px) scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50px, -50px) scale(1);
        opacity: 0.5;
    }
}