* {
    box-sizing: border-box;

}

body {
    background-color: rgb(21, 16, 21);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 10px;
    width: 100%;
    padding-bottom: 80px;
    /* enough space for nav bar */
}

@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.image-container {
    text-align: center;
    margin-top: 50px;
}

img:hover {
    opacity: 0.6;

}

.image {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    cursor: pointer;
}

.description {
    color: wheat;
    font-size: 25px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}


.win-text {
    font-size: 27px;
    line-height: normal;
    font-family: Georgia, 'Times New Roman', Times, serif;
    box-shadow: 0 0 20px inset rgb(157, 60, 248);
    color: wheat;
    max-width: 800px;
    margin: auto;
    padding: 10px;

}

.pro:hover {
    box-shadow: 0 0 20px inset;
}



a {

    color: rgb(241, 242, 245);
}




nav.mobile {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0.7rem 0;
    background: rgb(206, 203, 203);
    border-top: 1px solid #ccc;
    z-index: 9999;
    left: 0;
}

.mobile {
    transition: 0.5s ease !important;
}

nav.mobile ul {
    list-style: none;
    gap: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    justify-self: center;
    vertical-align: middle;
}

nav.mobile ul li {
    display: flex;
    flex-direction: calc();
    align-items: center;
    font-size: 0.8rem;
    flex-grow: 1;
    margin: 0;
}

nav.mobile ul li a {
    color: #222;
    font-size: inherit;
    display: var(--prP3M8);
    flex-direction: var(--mZSq9k);
}

nav.mobile ul li a svg {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 auto;
}


.bi-globe {
    cursor: pointer;
    /* Change cursor to pointer to indicate clickability */
}

.bi-globe:hover {
    color: #8f19f6;
}



.bi-plus-circle-fill {
    cursor: pointer;
    /* Change cursor to pointer to indicate clickability */
}

.bi-plus-circle-fill:hover {
    color: #8f19f6;
}







.bi-house-door {
    cursor: pointer;
    /* Change cursor to pointer to indicate clickability */
}

.bi-house-door:hover {
    color: #8f19f6;
}



.bi-person-circle {
    cursor: pointer;
    /* Change cursor to pointer to indicate clickability */


}

.bi-person-circle:hover {
    color: #8f19f6;
}

.bi-bell-fill {
    cursor: pointer;
}

.active-icon {
    color: #5609ba !important;
    /* applies to most icons */
    fill: #5609ba !important;
    /* for some icons using 'fill' instead of 'color' */
}