body {
    padding: 0px 16px;
}

.soda-container {
    margin-top: 32px;
    width: 100%;
    /* padding: 16px; */
    /* gap: 8px; */
    display: flex;
    justify-content: space-evenly;
}

@media (min-width: 800px) {
    .soda-container {
        margin:auto;
        width: 65%;
    }
} 
    
.main-image {
    width: 240px;
    height: auto;
    border: solid 2px orange;
    border-radius: 4px;
}

.left-block {
    width: 250px;
    border: 2px solid tan;
    transform: 
        rotateY(-45deg)
        rotateZ(20deg)
        rotateX(-20deg)
        ;
}

h1 {
    text-align: center;
    font-family: 'Brush Script MT', cursive;
    margin: auto;
    font-size: 28px;
    color: black;
}

.left-block p {
    padding: 8px;
    font-size: 12px;
    border: 2px solid black;
    /* transform: rotate(-90deg); */
}

.right-block {
    padding: 8px;
    border: solid 1px black;
    transform: 
        rotateY(-45deg)
        rotateZ(-20deg)
        rotateX(20deg)
        ;
}

.nutrition-label {
    font-family: Arial, sans-serif;
    border: solid 1px black;
}

.nutrition-header {
    font-weight: bold;
    font-size: 12px;
    text-decoration: underline;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table thead tr {
    border-bottom: solid 1px black;
}

table thead tr th {
    border: solid 1px green;
    margin: 8px;
}


tr.nutrition-line-item {
    font-size: 8px;
    border-bottom: 1px solid black;
}

tr.nutrition-line-item th {
    font-weight: normal;
    /* border: solid 1px black; */
    width: 80%;
    text-align: left;
}

tr.nutrition-line-item td {
    /* border: solid 1px black; */
    width: 10%;
    text-align: right;
}

.right-block ul {
    font-size: 8px;
    list-style-type: none;
    padding: 0;
}

@keyframes slideLeft {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}