@charset "utf-8";
/* CSS Document */
html, body {
    height: 100%;
    margin: 0;
    overflow: hidden; /* Prevent scrollbars if background image is larger than viewport */
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../GCN/Gold Coast Net full.jpg'); /* Replace with your image path */
    background-size: contain; /* Ensures the image covers the entire area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents image repetition */
    z-index: -1; /* Puts the background behind other content */
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
}

#downloadButton {
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}
