body {
    background: url('art.png') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    font-family: 'Bebas Neue', cursive;
}
/* ... other styles ... */


header {
    width: 100%;
    padding: 20px 0;
/*    background-color: #333;*/
    color: #fff;
}

header h1 {
    font-size: 80px;  /* Default font size for larger screens */
}

@media (max-width: 768px) {
    header h1 {
        font-size: 80px;  /* Larger font size for mobile and tablet screens */
    }
}

/* ... other styles ... */
.overlay {
    background: rgba(13, 11, 25, 0.67);
    padding: 20px;
    margin: 20px 0;
    border-radius: 20px;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, .6), 
        inset -2px -2px 5px rgba(255, 255, 255, .2),
        0 0 10px 5px rgba(255, 255, 255, 0.2);
}
/* ... other styles ... */


/* ... other styles ... */


.logo img {
    max-width: 70%;
    height: auto;
}

.button-container {
    display: flex;
    justify-content: center;  /* This will center the buttons */
    flex-direction: row;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;  /* Auto margins to center the container */
}



/* ... your other styles ... */

.btn-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;  /* Changed the top margin to auto to center the group vertically */
}

@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
    }

    button {
        width: 100%;
        margin: 10px 0;
    }
}

/* ... your other styles ... */

button {
    font-family: 'Bebas Neue', cursive;
    color: #000000;
    background-color: #ffffff;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 20px;
    cursor: pointer;
    border-radius: 25px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    width: 150px;
}

button.register {
    font-size: 18px;
/*    padding: 20px 20px;*/
}

button:hover {
    background-color: #000000;
    color: #ffffff;
}




/* ... other styles ... */

footer {
    width: 100%;
    padding: 20px 0;
/*    background-color: #333;*/
    color: #fff;
    font-size: 50px;  /* Default font size for the footer */
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    footer {
        padding: 40px 0;  /* Increase the padding to make the footer larger */
        font-size: 20px;  /* Increase the font size for better visibility */
    }
}

/* ... other styles ... */
