body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('image.jpg') no-repeat center center fixed;
    background-size: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
}

h1 {
    color: #FFFF00;
    font-size: 4em;
    text-align: center;
    font-weight: bold;
    transform: rotate(-45deg); /* Angle the text */
    opacity: 0.8;
}


