 body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    border-radius: 29px solid black;
    border: #333; 
    transition: 0.3s ease;
    
}
body {
    animation: testAnimation 1s ease-in-out;
}

@keyframes testAnimation {
    from {
        background-color: pink;
        opacity: 0;
    }
    to {
        background-color: #f5f7fa;
        opacity: 1;
    }
}

img{
    display:block;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border:30px groove lightcoral;
    object-fit: cover;
    margin-bottom: auto;
    margin-bottom: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
img:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
main {
    animation: zoomFade 0.8s ease-in-out;
}

@keyframes zoomFade {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}



header{
    text-align: center;
    border: 4px solid black;
    border-radius: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px;
    font-size: 30px;
    background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
    transition: 0.4s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
header:hover{
    background:linear-gradient(135deg, #ff9a9e, #fad0c4);
    transform: scale(1.03);
}
h2,h3{
    color: black;
    text-align: center;
    border-bottom: 3px solid #124364;
    display: inline-block;
    padding-bottom: 5px;
    font-size: 28px;
}
p{
    text-align: center;
    font-size: 30px;
    line-height: 1.6;
    color: #444;
    font-family: Arial, Helvetica, sans-serif;
}
ul {
    list-style-type: none;  
    padding-left: 0;
    text-align: center;
}
li {
    background-color: #e3f2fd;
    margin: 8px auto;
    padding: 10px 15px;
    width: 250px;
    border-radius: 15px;
    font-size: 30px;
    color: #2c3e50;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: 0.3s;
}
li:hover{
   background-color: #68869e; 
   transform: translateY(-3px);
}
.kk{
    border: 4px solid black;
    width: 600px;
    text-align: center;
    margin: 40px auto;
    border-radius: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #FF9A9E, #FAD0C4);
    transition: 0.4s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    font-size: 30px;
}
.kk:hover{
    background: linear-gradient(135deg, #FBC2EB, #A6C1EE);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);

}

footer {
    background:linear-gradient(135deg, #FF9A9E, #FAD0C4); ;
    padding: 10px;
    text-align: center ;
    border: 4px solid black;
    border-radius: 40px;
    font-size: 30px;
    margin-left: 10px auto;
    margin-right: 10px auto;  
    margin-bottom: 10px auto;
    margin: auto;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0,0,0,0,3);
    transition:all 0.3s ease;
    
}

footer:hover {
  background:linear-gradient(135deg, #fbc2eb, #a6c1ee);
  transform: scale(1.05); 
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);  
}
footer:active {
    transform: scale(1.05);
}

a {
    display: block;
    width: fit-content;
    margin: 20px auto;
    text-decoration: none;
    color: blue;
    border: 4px solid black;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 30px;
    transition: 0.3s;
    background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
}
a:hover {
    background: linear-gradient(90deg, #81c784, #64b5f6);
    transform: scale(1.05);
}
@media screen and (max-width: 600px) {
    .kk {
        width: 95%;
        padding: 15px;
    }
    p, li {
        font-size: 16px;
    }
    h2, h3 {
        font-size: 22px;
    }
    header {
        font-size: 24px;
        padding: 15px;
    }
}
@media screen and (max-width: 600px) {
    p, li {
        font-size: 18px;
    }
    img {
        width: 150px;
        height: 150px;
        border-width: 15px;
    }
    a {
        font-size: 20px;
    }
}


