* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('assets/khelojeetobumper.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.overlay-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.overlay-image {
    position: absolute;
    top: 0;
    height: auto;
    z-index: 1;
}

.left-overlay {
    left: 0;
    width: 750px;
}

.right-overlay {
    right: 0;
    width: 720px;
}

.yellow-text {
    color: yellow;
}

.red-text {
    color: red;
}

.green-text {
    color: rgb(4, 247, 4);
}

.overlay-text {
    position: absolute;
    top: 5%;
    left: 2%;
    color: white;
    line-height: 1.5;
    z-index: 2;
}

.overlay-text h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.download-buttons {
    position: absolute;
    bottom: 110px;
    right: 110px;
    display: flex;
    flex-direction: row;
    gap: 20px; /* Reduced gap for better alignment */
    z-index: 9999;
}

.download-button {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    background-color: black;
    color: white;
    z-index: 9999;
}

.download-button .button-icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.download-button:hover {
    background-color: #444;
}

.download-button2 {
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    background-color: black;
    color: white;
    z-index: 9999;
}


.download-button2 .button-icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.download-button2:hover {
    background-color: #444;
}