.gradient-background {
    background: linear-gradient(300deg, #00bfff, #4cff85, #727cef);
    background-size: 180% 180%;
    animation: gradient-animation 18s ease infinite;
}

h1 {
    color: #66bfbf;
    font-size: 5.625rem;
    margin : 50px auto 0 auto;
    font-family: "Sacramento", cursive;
}

h2 {
    color: black;
    font-size: 2.625rem;
    margin: 30px auto 0 auto;
    font-family: "Sacramento", cursive;
}

h3 {
    color: black;
    font-size: 2.625rem;
    margin: 30px auto 0 auto;
    font-family: "Sacramento", cursive;
}

body {
    color: #40514e;
    margin: 0;
    text-align : center;
    font-family: "Merriweather", serif;
}

.my-img {
    height: 200px;
    border-radius: 50%;
}


@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



.custom-badge {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    /* Default text color */
    transition: all 0.3s ease-in-out;
}

/* Microsoft */
.microsoft {
    background-color: #0078D4;
    /* Microsoft Blue */
}

.microsoft:hover {
    background-color: #005a9e;
}

/* AWS */
.aws {
    background-color: #FF9900;
    /* AWS Orange */
}

.aws:hover {
    background-color: #cc7a00;
}

/* Google */
.badge-google {
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: linear-gradient(270deg, #4285F4, #EA4335, #FBBC05, #34A853);
    background-size: 400% 400%;
    color: white;
    border: none;
    animation: googleGradient 6s ease infinite;
}

@keyframes googleGradient {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

/* Oracle */
.oracle {
    background-color: #F80000;
    /* Oracle Red */
}

.oracle:hover {
    background-color: #c60000;
}

/* ISC2 */
.isc2 {
    background-color: #00693E;
    /* ISC2 Green */
}

.isc2:hover {
    background-color: #004d2c;
}

/* CompTIA */
.comptia {
    background-color: #E31C23;
    /* CompTIA Red */
}

.comptia:hover {
    background-color: #b8161b;
}