body {
    background-color: #1a1a2e;
    color: #ff00ff;
    font-family: Comic Sans MS, cursive, sans-serif;
    transform: rotate(-1deg);
    margin: 5px;
    padding: 10px;
    border: 5px dashed #00ffff;
    box-shadow: 0 0 50px #ff69b4 inset;
}

.cover_img {
    margin: 20px;
    width: 90%;
    transform: skew(10deg, -5deg);
    border: 5px solid #ff6347;
    box-shadow: 10px 10px 0 #00ff00;
}

.horz_cont {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    gap: 30px;
}

.side_chevs {
    position: fixed;
    width: 80px;
    height: 100%;
    background-image: url('https://via.placeholder.com/80');
    background-repeat: repeat-x;
    background-size: contain;
    transform: scaleX(-1);
}

.home-button {
    font-family: Papyrus, sans-serif;
    font-size: 1.5rem;
    font-weight: bolder;
    text-transform: lowercase;
    text-align: right;
    letter-spacing: 0.3em;
    padding: 20px 40px;
    margin: 30px;
    color: #ff4500;
    background-color: #87cefa;
    border: 5px groove #ff4500;
    cursor: crosshair;
    box-shadow: 15px 15px 15px #ff00ff inset, -10px -10px 5px #000;
    text-decoration: underline;
    transform: rotate(2deg);
}

.home-button:hover {
    background-color: #b0c4de;
    color: #ff4500;
    border-radius: 50%;
    box-shadow: -20px -20px 20px #ffa500 inset;
    transform: scale(1.1) rotate(-5deg);
}

.principle-background {
    margin: 0 auto;
    font-family: Impact, sans-serif;
    background: repeating-radial-gradient(circle, #00ff00, #0000ff 10%, #ff0000 20%);
    color: #00ff00;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

img.principle-img {
    border: 10px dotted #ff00ff;
    margin: 30px;
    transform: rotate(-15deg);
    box-shadow: 20px 20px 20px #ffa07a inset, 0 0 20px #adff2f;
}

.principle {
    font-family: "Courier New", Courier, monospace;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff4500, #32cd32);
    color: #ffff00;
    border: 10px double #ff00ff;
    padding: 30px;
    text-transform: capitalize;
    text-align: justify;
    letter-spacing: 0.5em;
    line-height: 2em;
    box-shadow: 30px 30px 0 #000 inset, -10px -10px 20px #32cd32;
    width: 80%;
    max-width: 1000px;
}

.principle:hover {
    background: linear-gradient(-45deg, #32cd32, #ff4500);
    color: #000;
    box-shadow: 50px 50px 0 #ff00ff inset, 0 0 30px #ff4500;
    transform: translate(-10px, -10px) rotate(5deg);
}

footer {
    padding: 30px;
    background: linear-gradient(to bottom, #ff69b4, #4b0082);
    color: #ffffe0;
    font-size: 1.2rem;
    border-top: 10px solid #000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: neon-glow 1s infinite alternate;
}

@keyframes neon-glow {
    from {
        text-shadow: 0 0 5px #ff69b4, 0 0 10px #ff69b4, 0 0 20px #ff69b4;
    }
    to {
        text-shadow: 0 0 20px #4b0082, 0 0 40px #4b0082, 0 0 60px #4b0082;
    }
}
