

body,
html {
    margin: 0;
    padding: 0;
    background-image: url("GNTKFtZWUAArg9c");
    background-size: cover; /* Cover entire container */
    background-position: center; /* Center the image */
    height: 100vh; /* Full viewport height */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Retroville NC', Arial, sans-serif;
    /* background: linear-gradient(to top, #103507, #000000); */
    overflow: hidden; /* Prevent scrolling */
    /* background-color: #080808; */
}



.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 50px;
}

@media (max-width: 1000px) {
    .container {
        margin-top: 100px;
    }
}

.logo-image {
    max-width: 200px; /* Adjust size as needed */
    height: auto;
    display: block;
    margin: 0 auto; /* Small space below the logo */
}

.example-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.text {
    margin-top: 20px;
    font-size: 24px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

.responsive-button {
    margin-top: 20px;
    background-color: white;
    color: black;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.responsive-button:hover {
    background-color: #FFE674;
}

@media (max-width: 768px) {
    .text {
        font-size: 20px;
    }

    .responsive-button {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .text {
        font-size: 16px;
    }

    .responsive-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}
