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

body, html {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    font-family: Arial, sans-serif;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.overlay {
    position: absolute;
    bottom: 12%;
    right: 10%;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px;
    border-radius: 5px;
}

/* Position the signup button at the bottom-left corner */
.signup-btn {
    position: fixed; /* Keep fixed positioning */
    bottom: 40px; /* distance from bottom */
    left: 10px; /* distance from left */
    text-decoration: none;
    color: #000000;
    font-size: 22px;
    padding: 10px 4px;
    background: #e39356;
    border-radius: 4px;
    transition: 0.5s;
    white-space: normal;
    text-align: center;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 480px) {
    .signup-btn {
        bottom: 10px; /* Adjust for mobile bottom-spacing */
        left: 5px; /* Keep closer to the left edge */
        font-size: 10px; /* Possibly reduce size for mobile */
    }
}

.signup-btn:hover {
    background: #d1675a;
}