.grid-container{
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-auto-flow: column;
    gap: 1em;
}



.item {

    padding: 2em;
    background-color: #3a284a;
    color: whitesmoke;
    text-align: center;
    border-radius: 8px;
    font-size: 2rem;
}


.premium-list {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    gap: 2em;

}

.premiums {
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 8px;
    background-color: #ffe600;
    font-size: 24px;
}


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Top navigation */
.top-nav {
    width: 100%;
    background: #781787;
    color: #fff;
    padding: 15px 20px;
    font-size: 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

/* Page container */
.container {
    display: flex;
    margin-top: 70px; /* pushes content below the top nav */
}

/* Sidebar */
.sidebar {
    width: 220px;
    background: #40083c43;
    height: calc(100vh - 70px);
    padding-top: 20px;
    position: fixed; /* keeps sidebar fixed under the top nav */
    top: 70px;
    left: 0;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 15px;
}

.sidebar a {
    text-decoration: none;
    display: block;
    padding: 12px 20px;
    color: #ccc;
    font-size: 16px;
    transition: 0.3s;
}

.sidebar a:hover {
    background: #333;
    color: #fff;
}

.sidebar a.danger {
    color: #ff5252;
}

/* Main content */
.content {
    margin-left: 220px; /* space for sidebar */
    padding: 30px;
    width: calc(100% - 220px);
    min-height: 100vh;

}

   

