﻿body {
    color: white; /* You can change this to any color that suits your design */
    background-color: black; /* Sets a black background color */
    position: relative;
    background-image: url('/img/newbg.jpg');
    background-size: contain; /* Ensures the image covers the entire page */
    background-repeat: no-repeat; /* Prevents repeating the image */
    background-attachment: scroll; /* Makes the background image fixed in place */
    background-position: center 0px; /* Centers the background image */
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the 0.5 value for more or less darkness */
    z-index: -1; /* Ensure the overlay stays behind the content */
}

footer {
    background-color: white; /* Sets a white background for the footer */
    color: black; /* Ensures the text is visible against the white background */
    padding: 20px; /* Adds some padding for a cleaner look */
    border-top: 1px solid #ddd; /* Optional: Adds a subtle top border to separate the footer */
}

.button-container {
    display: flex;
    flex-direction: column; /* Stacks the buttons vertically */
    align-items: flex-start; /* Aligns buttons to the left */
}

/* Phones with small screens (e.g., up to 320px) */
@media only screen and (max-width: 320px) {
    .custom-translate {
        transform: translateY(0%);
    }
}

/* Phones with medium screens (e.g., up to 480px) */
@media only screen and (max-width: 480px) {
    .custom-translate {
        transform: translateY(0%);
    }
}

/* Phones with large screens (e.g., up to 768px) */
@media only screen and (max-width: 768px) {
    .custom-translate {
        transform: translateY(0%);
    }
}

/* Tablets with medium screens (e.g., up to 1024px) */
@media only screen and (max-width: 1024px) {
    .custom-translate {
        transform: translateY(0%);
    }
}

/* Tablets with large screens (e.g., up to 1280px) */
@media only screen and (max-width: 1280px) {
    .custom-translate {
        transform: translateY(0%);
    }
}

/* Laptops with similar sized screens (e.g., up to 1440px) */
@media only screen and (max-width: 1440px) {
    .custom-translate {
        transform: translateY(0%);
    }
}

/* Desktops up to Full HD (1920px) */
@media only screen and (max-width: 1920px) {
    .custom-translate {
        transform: translateY(0%);
    }
}

/* Desktops up to 4K (3840px) */
@media only screen and (max-width: 3840px) {
    .custom-translate {
        transform: translateY(0%);
    }
}
