
/* Style for the fixed navigation bar */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 50px;
    padding-left: 0; /* Remove left padding */
    margin-left: 0; /* Remove left margin */
    background-color: rgb(109, 177, 201) !important;
 
    z-index: 1000 !important; /* Ensure the navigation bar is above other content */
}

/* Style for the content section */
.content {
    padding-top: 60px !important; /* Add padding to prevent content from being hidden behind the fixed navbar */
    width: 80% !important;
    margin: 0 auto !important;
}

/* Style for the article section */
.article {
    margin-bottom: 20px !important;
    padding: 20px !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
}

/* Style for the footer */
.footer {
    background-color: #333 !important;
    color: #fff !important;
    text-align: center !important;
    padding: 20px 0 !important;
    position: relative !important;
    bottom: 0 !important;
    width: 100% !important;
}
.highlight-white {
    color: white !important;
}

.card {
    transition: transform 0.3s, box-shadow 0.4s; 
    background-color: rgb(109, 177, 201);
    color: black; 
}

.card:hover {
    transform: scale(1.01); 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); 
}
.description {
    height: 100px !important;
    overflow: hidden;
}
.game-vault-text {
    font-size: 24px; 
    font-weight: bold; 
    margin-right: 20px; 
    color: #ffffff; 
    display: flex !important;
    align-items: center !important;
}
