.desk-section{
    display: flex;
    justify-content: center;
    gap: 10%;
}

.coffee-cup{
    width: 40%;
    display: flex;
    height: 30vw;
}
.cup{
    background-color: bisque;
    border: 2px solid black;
    width: 60%;
    border-radius: 5px 5px 20px 20px;
    position: relative;
}
.cup-interior{
    position: absolute;
    top: -2px;left: 10px;right: 10px;bottom: 20px;
    background-color: white;
    border: 2px solid black;
    border-top: none;
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: flex-end;
    padding-top: 10px;
}
.handle{
    width: 25%;
    margin: auto -2px;
    background-color: bisque;
    height: 70%;
    border: 2px solid black;
    border-left: none;
    border-radius: 0 50% 50% 0;
    z-index: 1;
}
.handle-gap{
    width: 80%;
    margin: 14% auto 10% 0;
    background-color: white;
    height: 80%;
    border: 2px solid black;
    border-radius: 0 50% 50% 0;
}
.coffee{
    background-color: rgb(75, 24, 24);
    width: 100%;
    transition: 1.2s;
}
.pot{
    display: flex;
    flex-direction: column;
    width: 20%;
}
.pot-base{
    height: 10%;
    background-color: black;
    border-radius: 5px 5px 2px 2px;
}
.pot-glass{
    flex: 1;
    margin: 0 5px;
    border: 2px solid black;
    border-bottom: none;
    padding-top: 5px;
    display: flex;
    align-items: flex-end;
}
.coffee-in-pot{
    background-color: rgb(75, 24, 24);
    width: 100%;
    transition: 1.2s;
}
.pot-lid{
    height: 10%;
    background-color: black;
    border-radius: 2px 2px 5px 5px;
}
.pot-knob{
    height: 5vw; width: 5vw;
    background-color: black;
    border-radius: 50%;
    margin: 0 auto;
}