/* code tutorial from:
https://www.youtube.com/watch?v=Ug1md5d3Jy8 */


/* .item-container img {
    width: 300px;
    height: 300px;
    object-fit: cover;
} */

html{
    background-image: url(https://upload.wikimedia.org/wikipedia/en/2/27/Bliss_%28Windows_XP%29.png);
    background-size: cover;
}

.item-container {
    max-width: 720px;
    margin: 24px auto;
    background-color: white;
}

.item{
    display: flex;
    gap: 24px;
    align-items: center;
    font-family:'Times New Roman', Times, serif;
    box-shadow: 0 4px 40px -8px rgba(0, 0, 0, 0.2);
}

.item .content{
    padding: 24px;
}

/* .item-container .next{
    background-color: white;
    padding: 4px 16px;
    background: green;
    color: white;
    cursor: pointer;
    margin: 16px 0;
} */

@media (max-width: 700px){
    .item{
        flex-direction: column;
    }

    .item-container{
        max-width: 500px;
    }

    .item-container img{
        width: 100%;
        height: 200px;
    }
}