body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    text-align: center;
}


.hero {
    height: 80hv;
    background: url('Runtan.JPG') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
}

.hero img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.overlay {
    /* background: rgba(255, 255, 255, 0.85); */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 50%;
    max-width: 500px;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); */
}

.overlay h1 {
    font-family: 'Dancing Script', serif;
    font-size: 5rem;
    margin: 0;
    font-weight: bold;
    color: powderblue;
}

.overlay p {
    font-family: 'Dancing Script', serif;
    font-size: 2rem;
    margin: 10px 0;
    color: powderblue;
}

button {
    padding: 14px 30px;
    font-size: 20px; 
    border: 2px solid powderblue; 
    border-radius: 5px;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
}

button:hover {
    background: powderblue;
    transform: scale(1.05);
}