body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('Website Bg Design.png') no-repeat center center fixed;
    background-size: cover;
}

.container {
    position: relative;
    width: 80%;
    max-width: 90%; /* Set a maximum width for the container */
    top: 10px;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 5px;
}

.content {
    position: relative;
    z-index: 1;
    text-align: left; /* Align the content to the left */
    padding: 20px;
    color: #fff;
}

h1{
    text-align: center;
}

/* Add a scrollbar for smaller screens */
@media screen and (max-width: 600px) {
    body {
        overflow-y: scroll; /* Enable vertical scrolling on phones */
    }
}
