﻿body {
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: linear-gradient(to bottom, #DCDCDC, #1f2029);
}

.container-fluid {
    padding-top: 50px;
    display: grid;
    place-items: center;
}

.category {
    width: 90%;
    background-color: rgb(240, 240, 240);
    border-radius: 40px;
    min-height: 80px;
    margin-bottom: 20px;
    transition: height 2s;
}

    .category:hover {
        background-color: rgb(237, 109, 97);
        color: white;
        font-weight: 600;
    }

	.category .heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        height: 80px;
        border-radius: 40px;
        padding: 0 20px 0 25px;
    }

    .category h3 {
        text-transform: uppercase;
        font-family: serif;
        margin: 0;
    }

    .category img {
        width: 64px;
        height: 64px;
    }

.item {
    display: none;
    max-height: 0;
    overflow: hidden;
    background-color: rgb(240, 240, 240);
    color: black;
    width: 80%;
    border-radius: 0 0 25px 25px;
    height: auto;
    border: 1px solid;
    margin: 15px auto 15px auto;
    transition: max-height 2s;
}

    .item img {
        position: static;
        width: 100%;
        height: 120px;
    }
