/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: url('background.jpg') no-repeat center center/cover;
    color: #fff;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

/* Container */
.container {
    background: rgba(0, 0, 0);
    padding: 40px;
    border-radius: 10px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Logo */
.logo {
    width: 300px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* Heading */
h1 {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
}

@media (max-width: 768px) { /* You can adjust the breakpoint as needed */
    h1 {
        font-size: 2rem;
    }
}
