
h1 {
    color: #4B0082;
    text-align: center;

}
h2 {
    color: #FF4500;
}
h3 {
    color: #4B0082;
    text-align: center;
}
pre {
    font-size: 24px;
}
b1 {
    color: green;
    font-weight: bold;
}
b2 {
    color: red;
    font-weight: bold;
}
/* Moving gradient background */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body {
    background: linear-gradient(270deg, #080185, #1313d7, #00d5ff);
    background-size: 600% 600%;
    animation: gradient 15s ease infinite;
}
a {
    text-decoration: none;
    color: #4B0082;
    font-weight: bold;
    align-items:center;
}
a:hover {
    color: #FF4500;
    
}

main {
    text-align: center;
    padding: 20px;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #4B0082;
}

#test{
    text-align: center;
}
