body {
    background-color: #3d4c5d;
    /* Subtle water blue-gray */
    color: #f4f4f4;
    /* Soft off-white text */
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    width: 100%;
}

.cover_img {
    margin: 5px;
    width: 100%;
    border-radius: 10px;
    /* Soft rounded edges for a more fluid feel */
}

.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;
}

.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: #fff;
    /* Light text for high contrast */
    background-color: #f7a700;
    /* Gold, inspired by koi scales */
    border: 4px solid #d17b00;
    /* Slightly darker gold border */
    cursor: pointer;
    box-shadow: 6px 6px 0 #000000;
    text-decoration: none;
    display: inline-block;
    left: 150px;
}

.title {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 2em;
}

.home-button:hover {
    background-color: #e69300;
    box-shadow: 10px 10px 0 #000000;
    transform: translate(-4px, -4px);
}

.home-button:active {
    background-color: #c97700;
    box-shadow: 5px 5px 0 #000000;
    transform: translate(0, 0);
}

.principle-background {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1e2c3a;
    /* Pond water depth color */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

img.principle-img {
    border: 5px solid #d4a900;
    /* Gold for koi emphasis */
    margin: 10px;
    box-shadow: 10px 10px 0 #000000;
}

.principle {
    font-family: "Courier New", Courier, monospace;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #d4d4d4;
    /* Light gray background for the principle */
    color: #000000;
    border: 4px solid #000000;
    padding: 20px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.1em;
    box-shadow: 10px 10px 0 #000000;
    width: 60%;
    max-width: 800px;
    background-image: url('../water_texture.jpg');
    /* Add a subtle water texture */
}

.principle:hover {
    background-color: #c1c1c1;
    box-shadow: 15px 15px 0 #000000;
    transform: translate(-5px, -5px);
}

.respect-my-space {
    white-space: pre-wrap;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

p {
    margin: 10px;
}

.seding {
    color: #e0bf00;
    font-weight: bold;
}

.smarty {
    width: 100%;
    padding: 15px;
    background-color: #ffffff;
    box-shadow: 1px 1px 10px white;
    color: #1a1a1a;
}


p,
.intro,
.paragraaf,
.lift-equation,
.code-description,
.tip {
    font-size: 1.2rem;
    margin: 15px 10px;
    width: 95%;

}

.link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.link:hover {
    text-decoration: underline;
}

.code-snippet {
    background-color: #282c34;
    color: #f8f8f2;
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.code-comments {
    white-space: pre-wrap;
    font-size: 1rem;
    color: #b6b6b6;
    margin: 20px 20px;
    padding: 10px;
    background-color: #000;
}

.section {
    width: 95%;

}

strong {
    font-weight: bold;
    color: #d9534f;
}

sup {
    font-size: 1.2rem;
}

.tip {
    font-size: 1rem;
    font-style: italic;
    background-color: #f1f8e9;
    padding: 10px;
    border-left: 5px solid #4caf50;
    color: #007bff
}

.section-title {
    font-family: "Courier New", Courier, monospace;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #4d4d4d;
    /* Pond rocks gray */
    color: #d6d6d6;
    border: 4px solid #000000;
    padding: 20px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.1em;
    max-width: 1200px;
}

h1 {
    font-size: 1.5rem;
    margin: 10px;
    background-color: #2a2a2a;
    padding: 20px;
}

h2 {
    font-size: 1.5rem;
    margin: 10px;
}

h3 {
    font-size: 1.2rem;
    margin: 10px;
}

.koi-pond-container {
    display: flex;
    /* Enables flexbox on the container */
    justify-content: center;
    /* Centers content horizontally */
    text-align: center;
    /* Optional, for centering inline elements like text */
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 70px;
    padding-top: 10px;
    align-items: center;
    justify-content: center;
    border: 4px solid #555;
    box-shadow: inset 0 0 10px #1a1a1a, 0 0 15px #1a1a1a;
    background-color: #234866;
}

.difficult {
    background-color: rgb(60, 88, 107);
}

header h1 {
    font-size: 32px;
    color: #d3d3d3;
    text-shadow: 1px 1px 2px #000;
    margin: 20px 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    padding: 20px;
}

.avatar-section {
    text-align: center;
}

.avatar {
    width: 150px;
    height: 150px;
    border: 3px solid #888;
    box-shadow: inset 0 0 10px #2a2a2a, 0 0 5px #2a2a2a;
    margin-bottom: 10px;
}

.info-section {
    background-color: #595959;
    border: 2px solid #707070;
    padding: 10px;
    box-shadow: inset 0 0 5px #1a1a1a, 0 0 5px #000;
}

.info-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.info-section p {
    color: #e0e0e0;
}

.buttons-section {
    grid-column: span 2;
    padding-top: 20px;
}

button {
    width: 150px;
    padding: 10px;
    margin: 10px;
    border: 2px solid #6d6d6d;
    background-color: #3c3c3c;
    color: #d0d0d0;
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace;
    cursor: pointer;
    box-shadow: inset 2px 2px 5px #1a1a1a, 0 0 5px #000;
    transition: all 0.2s ease;
}

button:hover {
    background-color: #5c5c5c;
    color: #ffffff;
}

footer {
    padding: 20px;
    background-color: #2e2e2e;
    color: #c0c0c0;
    font-size: 14px;
}

.koi-pond-image {
    border-radius: 15px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
   border: 3px solid #A1C4D3;
    background-color: #F0F8FF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 95%;
    padding: 10px;
    width: auto;
    height: auto;
    display: block;
    margin: auto;
}

.koi-pond-image:hover {
    transform: scale(1.05);
    /* Slight zoom on hover for a gentle, interactive feel */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    /* Enhanced shadow for hover effect */
}