/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set the body and html to fill the entire viewport */
html, body {
    height: 100vh; /* Make sure the entire page (html and body) is 100vh */
    display: flex;
    flex-direction: column; /* Allows for flexible layout */
}

/* Header Styling */
header {
    background-color: white;
    padding: 10px;
    position: relative;
}
h3{
    font-size: 35px;
}

/* Bulk Content Area */
.bulk {
    display: flex;
    flex: 1; /* This makes the bulk area take up the remaining space between the header and footer */
    background-color: #6CABDD;
    padding: 20px;
    overflow-y: auto;
    text-align: center;
    color: #1C2C5B;
    font-size: larger;
    font-size: 18px;
    align-items: center;
    justify-content: space-around;
}
.box {
    display: inline-block;
    background-color: white;
    color: #1C2C5B;
    padding: 15px;
    border-radius: 15px;
    margin-top: 20px;
    margin-bottom: 20px; /* Add space between boxes */
    width: 100%; /* Make the box take full width on mobile */
    max-width: 500px; /* Limit the maximum width */
    text-align: center; /* Align text to the left for readability */
    align-items: center;
    border: 2px solid gray;
    box-shadow: rgba(0, 0, 0, .35) 0px 5px 15px;
}

/* Footer Styling */
footer {
    background-color: #1C2C5B;
    color: white;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    position: relative;
}

/* Hamburger Icon Styling 
.hamburger {
    width: 30px;
    height: 25px;
    position: absolute;
    top: 15px;
    right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #1C2C5B;
    border-radius: 2px;
}

/* Logo Styling */
.logo {
    width: 15%;
    max-width: 300px;
    height: auto;
    margin: 0;
    padding-left: 10px;
    float: left;
}
@media (max-width: 600px) {
    .logo {
        width: 90%;
        max-width: 180px; /* Further reduce logo size on smaller screens */
    }
    header{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    h1 {
        font-size: 10px; /* Smaller font size for header title */
    }

    h3 {
        font-size: 20px; /* Adjust font size for subheading */
    }

    .box {
        padding: 10px; /* Adjust padding for smaller screens */
    }

    .bulk {
        padding: 10px; /* Reduce padding for smaller screens */
        font-size: 14px; /* Adjust base font size for readability */
    }
    footer{
        font-size: 12px;
    }
}