html {
    background: url("images/body-bg.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    min-height: 100%;
    background-attachment: scroll;
}

html body {
    background-color: transparent;
}

html body div.container {
    position: relative;
    margin-top: 200px;
}

@media all and (max-width: 768px) {
    html body div.container {
        margin-top: 100px;
    }
}

html body div.container img.logo {
    position: absolute;
    left: 50%;
    margin-left: -105px;
    bottom: 200px; /* Adjusted to move the logo higher */
    z-index: 1;
}

@media all and (max-width: 768px) {
    html body div.container img.logo {
        bottom: 500px; /* Adjusted to move the logo lower on mobile screens */
        transform: translateY(30%);
        width: 150px; /* Set smaller width for mobile */
        margin-left: -75px; /* Adjusted for smaller logo */
    }
}

html body div.container div[class*="col-"] {
    background-color: rgba(255, 255, 255, 0.7); /* Updated background color */
    padding: 30px;
    color: #15b4e5;
}

@media all and (max-width: 768px) {
    html body div.container div[class*="col-"] {
        margin-top: 30px;
    }
}

html body div.container div[class*="col-"] p.location {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: bold;
}

html body div.container div[class*="col-"] p.address {
    font-size: 20px;
    color: black; /* Updated address text color */
}

html body div.container div[class*="col-"] p.enter {
    margin-top: 20px;
}

html body div.container div[class*="col-"] p.enter a {
    background-color: #db1e24; /* Updated button color */
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 20px;
}
