footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 50px;
    background-color: #F56A57;
    font-weight: 400;
}

#cup-holder {
    position: fixed;
    width: 150px;
    height: auto;
    right: 10px;
    bottom: -30px;
    transition: all 0.3s ease-in-out;
}

#cup-holder:hover {
    transform: rotateZ(5deg);
    bottom: -10px;
}

#cup-holder #straw {
    position: absolute;
    width: 100px;
    bottom: 10px;
    right: 20px;
    z-index: -1;

    transition: all 0.3s ease-in-out;
}

#cup-holder:hover #straw {
    transform: rotateZ(-15deg);
    right: 50px;
}

#cup-holder #cup, footer #cup img{
    z-index: 100;
}

#cup-holder #cup img {
    width: 100%;
    height: auto;
}

#cup-holder-nav {
    position: absolute;
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: black;

    font-size: 24px;
}

#name-holder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}