@charset "UTF-8";
/* CSS Document */body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.banner {
    position: fixed;
    top: -50px; /* Initially above the viewport */
    left: 0;
    width: 100%;
    background-color: #007bff; /* Blue color for the banner */
    padding: 10px;
    box-sizing: border-box;
    transition: top 0.3s ease; /* Smooth transition for appearing/disappearing */
    z-index: 9999;
}

.banner p {
    margin: 0;
    color: white;
    text-align: center;
}

.content {
    margin-top: 50px; /* Adjust according to banner height */
}


