* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('v788-mynt-42.jpg');
    background-size: cover;
    background-position: center;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: rgb(0, 105, 33);
    text-align: center;
    overflow: hidden;
}

/* Dark transparent overlay so the text is easy to read */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(101, 129, 108, 0.45);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

/* Cursive font for the main heading */
h1 {
    font-family: "Hachi Maru Pop", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #00532c;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}
