body {
    background-color: #181818;
}
.header-container,
.title-container,
.cup-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 24px;
}

.title-container {
    padding: 16px;
    max-width: 768px;
    margin: 0 auto;

    margin-top: 80px;
    margin-bottom: 80px;
    overflow: hidden;
}

.cup-container img {
    height: 320px;
}

.cup-container {
    display: inline-flex;
    position: relative;
}

.cup-container::after {
    content: "";
    position: absolute;
    background-image: url("/assets/smoke.svg");
    background-size: 100%;
    background-position: 0% 100%;
    background-repeat: no-repeat;
    height: 200%;
    width: 200%;
    top: -192%;
    left: 20%;
    z-index: -2;
    box-shadow: inset -340px 180px 50px 153px #181818;
}

@media (max-width: 425px) {
    .cup-container img{height: auto;}
  .cup-container::after {
    top: -182%;
    box-shadow: inset 0 0 0 0 #181818;
}}

@media (max-width: 320px) {
  .cup-container::after {
    top: -172%;
    box-shadow: inset 0 0 0 0 #181818;
}}

/********* HELPERS FOR PROTOTYPES ******/


.header-container img
{
   max-width: 100%;
}

.title-container img{
    width: 100%;
}

.title-container .bf, .btn{
    max-height: 48px;
}