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

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Full-width background image */
.background-image {
    background-image: url('/work-in-progress/renovation-under/background.jpg'); /* Replace this with your background image URL */
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Centered content */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    color: #fff;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent overlay to make text more readable */
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Container for buttons to align them horizontally */
.button-container {
    display: flex;
    gap: 20px; /* Space between the buttons */
}

.btn-download, .linkedin-link {
    text-decoration: none;
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    border-radius: 100px;
    margin: 10px;
    transition: background-color 0.3s;
}

.btn-download:hover, .linkedin-link:hover {
    background-color: #45a049;
}

.linkedin-link {
    background-color: #0077B5; /* LinkedIn blue */
    border-radius: 100px;
}
