body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}

header {
    background-color: #444;
    color: #fff;
    padding: 20px;
    text-align: center;
}

h1, h2 {
    font-family: 'Times New Roman', serif;
}

img {
    display: block;
    margin: 20px auto;
    border-radius: 50%;
    width: 200px;
    height: auto;
}

section {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

#about h2, #academic-journey h2, #research-focus h2, #publications h2, #contact h2 {
    color: #444;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

#about p, #academic-journey p, #research-focus p, #publications ul, #contact p {
    font-size: 18px;
}

#publications li {
    font-style: italic;
}

@keyframes flash {
    0% {
        color: #f00;
        opacity: 0.5;
        scale: 1;
    }
    25% {
        color: #0f0;
    }
    50% {
        color: #00f;
        opacity: 1;
        scale: 10;
    }
    75% {
        color: #ff0;
    }
    100% {
        color: #0ff;
        scale: 1;
    }
}

header {
    animation: flash 0.01s infinite reverse;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
        scale: 1;
    }
    100% {
        transform: rotate(360deg);
        scale: 1.5;
    }
    
}

section {
    animation: rotate_random_color 0.5s infinite linear;
}


@keyframes rotate_random_color {
    0% {
        background-color: red;
        transform: rotate(0deg);
        scale: 1;
    }
    25% {
        background-color: green;
    }
    50% {
        background-color: blue;
        scale: 1.5;
    }
    75% {
        background-color: yellow;
    }
    100% {
        background-color: purple;
        transform: rotate(360deg);
        scale: 1;
    }
    
}

body {
    animation: rotate_random_color 8s infinite reverse;
    background-color: blueviolet;
}
