*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(196, 179, 182);
}

.container{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}

.container li{
    background-color: white;
    padding: 15px;
    text-decoration: none;
    list-style: none;
    margin: 5px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.container li .box{
    width: 150px;
    height: 150px;
    /* background-color: blueviolet; */
    margin-bottom: 10px;

}

.value{
    display: flex;
    text-align: center;
    justify-content: center;
    width: 150px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: larger;
    text-transform: uppercase;
    cursor: pointer;
}

.button{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    position: sticky;
}

.btn{
    margin-top: 20px 0;
    padding: 20px;
    background-color: aqua;
    font-size: larger;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

