/* The true essence of Rajdeep */
@keyframes brainMelter {
    0% { background-color: #ff00ff; }
    33% { background-color: #00ffcc; }
    66% { background-color: #ff3300; }
    100% { background-color: #ff00ff; }
}

body {
    animation: brainMelter 5s infinite;
    color: white;
    font-family: "Comic Sans MS", "Chalkboard SE", cursive;
    text-align: center;
    margin: 0;
    cursor: crosshair; /* Makes your mouse look like a sniper target */
}

/* The world's most aggressive navigation bar */
.navbar {
    background-color: black;
    padding: 20px;
    border-bottom: 10px dashed yellow;
}

.navbar a {
    color: lime;
    font-size: 2rem;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    background-color: purple;
    padding: 10px 20px;
    border-radius: 15px;
    display: inline-block;
    transition: transform 0.2s;
}

.navbar a:hover {
    transform: rotate(15deg) scale(1.3);
    background-color: red;
    color: yellow;
}

h1 {
    font-size: 4rem;
    text-shadow: 4px 4px black;
}

/* For your images later */
.goofy-img {
    border: 8px solid white;
    border-radius: 50%;
    transition: transform 0.5s;
    margin: 10px;
    width: 300px;
    height: 300px;
    object-fit: cover;
}

.goofy-img:hover {
    transform: rotate(360deg) scale(1.1);
}