* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

body {
    display: flex;
    flex-direction: column; /* Stacks elements vertically */
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    background: linear-gradient(to bottom right, #d8a37d, #e2e2e2);
    color: #333;
}

p {
    font-size: 16px;
    line-height: 1.5; /* Improves readability */
    text-align: left;
    margin-bottom: 10px;
}

#grad {
  background-image: linear-gradient(to right, orange, white);
}

/* Full-width banner */
.banner {
    width: 100vw;
    height: 240px;
    background: url('BTBanner.jpg') no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner img {
    width: 100%; /* Ensures the image spans the full width */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes unwanted gaps */
}



/* Boxed content */
.wrapper {
    width: 60%; /* Keeps it centered and contained */
    max-width: 60%; /* Prevents it from getting too wide */
    min-width: 300px; /* Ensures it doesn’t get too small */
    margin: 20px auto; /* Centers it */
    margin-top: auto;
    padding: 20px;
    background-color: white; /* Ensures it's visible */
    border: 2px solid black; /* Debugging: you can remove later */
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    opacity: 0.65;
}

@media (max-width: 768px) {
    .wrapper {
        width: 90%;
        padding: 15px;
    }
}