

#top_box {
    display: flex;
    height: 200px;
    flex-wrap: nowrap;
    margin-top: 10px;
    margin-left: 15%;
    margin-right: 15%;
    border-radius: 15px;
    border: solid 2px black;
}

.box {
    flex: 1; 
}

#titlebar {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}



#main_box{
    display: flex;
    align-content: space-between;
    height: 200px;
    flex-wrap: nowrap;
    margin-top: 10px;
    margin-left: 15%;
    margin-right: 15%;
    border-radius: 15px;
    background-color: #ece2d0;
    border: solid 2px black;
}

.image-stack {
    position: relative;
    width: 150px;
    height: 150px;
    margin-left: 50px;
    margin-top: 25px;
}

.pepsi-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 150px;
    width: 150px;
    border-radius: 90px;
    z-index: 1;
}

.frame-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 150px;
    width: 150px;
    z-index: 2;
    pointer-events: none; /* So clicks go to the dog if needed */
}

#box6{
    order: 0;
    margin-top: 30px;
    margin-left: 400px;
    font-family: sans-serif;
}

#mid_box{
    display: flex;
    border: 10px solid black;
    height: 1200px;
    flex-wrap: nowrap;
    align-content: center;
    margin-bottom: 5%;
    margin-top: 10px;
    margin-left: 15%;
    margin-right: 15%;
    border-radius: 15px;
    background-color: #ece2d0;
}

@keyframes slideAcross {
  0% { transform: translateX(0); }
  100% { transform: translateX(215%); }
}

body{
    background-color: rgba(232, 218, 191, 0.98);
}