body{
    background-color: rgb(249, 111, 146);
    background-image: url("moshimo.img.jpeg");

    }

h1{
    color:rgb(241, 241, 252);
    text-align: center;
    font-size: 5em;
  font-family:Georgia, 'Times New Roman', Times, serif
}

h2{
    color: rgb(29, 78, 121);
}


h5{
    color: rgb(29, 78, 121);
}
h6{      
    color: rgb(29, 78, 121);
    text-align: left;
    font-size: 0.75em;
    letter-spacing: 30px;
}
header{
    background-color: rgba(205, 5, 55, 0.301);
    padding: 40px;
    margin: 1px;
}

.header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-link {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
    transition: all 0.3s ease;
}

.logo-link:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}
mainr{
    padding: 20px 30px;
}

footer{
padding: 20px 30px;
background-color: rgba(205, 5, 55, 0.301); 
}

div{
    background-color: rgba(209, 241, 241, 0.409);
    border-radius: 10px;
    padding: 20px 30px;
}

.center{
    text-align: center;
}

.text-small{
    font-size: .8em;
}

.contents1
.contents2

.contents1,.contents2{
width: 40%;
height: 50px;
}

.main{
display: flex;
}

/* Hero Image */
.hero-image {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, rgba(205, 5, 55, 0.8), rgba(249, 111, 146, 0.8));
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
    box-shadow: 0 4px 15px rgba(205, 5, 55, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(205, 5, 55, 0.4);
    background: linear-gradient(135deg, rgba(205, 5, 55, 1), rgba(249, 111, 146, 1));
}

.cta-button:active {
    transform: translateY(-1px);
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 20px;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 1200px) {
    header {
        padding: 30px;
    }
}