/* Tablet Styles */
@media(min-width: 768px) {
    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: antiquewhite;
        padding-top: 128px;
        padding-bottom: 128px;
        gap: 30px;
    }

    main {
        width: 616px;
        border-radius: 24px;
        background-color: white;
        padding: 38px;
        padding-bottom: 0;
    }

    .img-section {
        padding: 32px;
    }
    
    img {
        border-radius: 12px;
        height: 300px;
    }

    .recipe-section {
        padding: 0;
    }
}