/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body, html {
    height: 100%;
    margin: 0;
}

/* Body Styling */
.body {
    background: url('background.jpg') no-repeat center;
    background-size: cover;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

/* Back Button Styling */
#back-button a img {
    width: 50px; /* Adjust the size for responsiveness */
    height: auto;
}
#back-button {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background: none;
    border: none;
    padding: 0;
    z-index: 10; /* Ensure it stays above other elements */
}

/* Header Styling */
.header {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 4.5rem;
    margin-bottom: 20px;
}

/* Text Styling */
.text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 3rem;
    color: rgb(45, 134, 169);
    margin-top: 10%;
    margin-right: 0;
}

/* Play Button Image Styling */
.btnImage {
    background-color: black;
    border-radius: 50%;
    border: none; /* Remove the border */
    max-width: 100px; /* Set a maximum width */
    height: auto; /* Maintain aspect ratio */
    margin-top: 10px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .header {
        font-size: 3rem;
    }
    .text {
        font-size: 2rem;
    }
    .btnImage {
        max-width: 80px; /* Adjust for smaller screens */
    }
}
@media (max-width: 480px) {
    .header {
        font-size: 2.5rem;
    }
    .text {
        font-size: 1.5rem;
    }
    .btnImage {
        max-width: 60px; /* Further adjust for smaller screens */
    }
}
