
body {
    font-family: "SF Pro ",sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    
}
h1{
   
    margin-bottom: 20px;
}
.content h2{
color: red;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}
p{
    
    font-size: 20px;
    margin-bottom: 30px;
}
.header {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.header img {
    width: 100%;
    height: auto;
    animation: landingFromTop 2s ease-out;
}
@keyframes landingFromTop {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(72, 130, 238, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.overlay h1 {
    color: white;
    font-size: 2em;
}

.content {
padding: 20px;
background-color: #2da1d7;
margin: 20px auto;
width: 80%;
border: 1px solid #000;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
animation: landingFromLeft 2s ease-out;
}
@keyframes landingFromLeft {
0% { transform: translateX(-100%); }
100% { transform: translateX(0); }
}
#content h1, #content h2, #content p {
    animation: fadeIn ease 3s;
    animation-fill-mode: forwards;
    opacity: 0;
}
#content h1 { animation-delay: 0.5s; }
#content h2 { animation-delay: 1s; }
#content p { 
    animation-delay: 1.5s; 
    margin-bottom: 30px;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
