/*
    Programmed By Lucus Mulhorn
    Date: 4/9/2024
*/

*{
    margin: 0;
    padding: 0;
}

html, body{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

#cakes{
    overflow-y:scroll;
    overflow-x:hidden;
}

#cakes, header, footer{
    position: fixed;
    width: 100%;
}

header, footer{
    background-color: rgba(109, 108, 129);
    color: white;
    z-index: 1;
}

header, header>div{
    top: 0;
}

.ingredients > p, footer, footer > .fixedContainer{
    bottom: 0;
}

footer > *{
    padding: 2px;
}

.ingredients{
    display: inline-block;
    border-radius: 7px;
    overflow: hidden;
    background-color: white;
    color: black;
    width: 13%;
    height: 7.5em; 
    box-sizing: content-box;
}


header > div > *{
    margin: 2px;
}

input{
    width: 30%;
    height: 25px;
    border: 3px solid rgb(95, 95, 95);
    border-radius: 5px;
}

.fixedContainer{
    position: fixed;
    background-color: rgba(109, 108, 129, 0.87);
    width: 100%;
    height: max-content;
}