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

/* Body Styling */
body {
    font-family: "Roboto", sans-serif;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

/* Image Container */
.image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}


/* Overlay */
.overlay {
    position: absolute;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}

/* Overlay Title */
.overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

/* Overlay Links */
.overlay ul {
    list-style: none;
    padding: 0;
}

.overlay li {
    margin: 15px 0;
}

.overlay a {
    display: inline-block;
    text-decoration: none;
    font-size: 1.2rem;
    color: #f8b400;
    padding: 10px 20px;
    border: 2px solid #f8b400;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.overlay a:hover {
    background: #f8b400;
    color: #000;
}