*,::after,::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-image: url(Background.jpg);
    background-repeat:repeat-y;
    color: white;
    font-family: sans-serif;
}

header{
    height: 230px;
    background: linear-gradient(#141213
    0%,#141213 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    font-family: "Brush Script MT Italic V2";
}

.cafe-name{
    margin-top: -5rem;
    font-size: 5.5rem;
}

.ribbon{
    margin-top: -7rem;
    width: 28%;
}
.content{
    display: grid;
    grid-template-areas: 
    'drinks-title pastry-title dessert-title'
    'drinks pastry dessert';
    padding: 3rem;
    gap: 2rem;
    margin-top: -100px;
}

.drinks-title{
    grid-area: drinks-title;
}

.pastry-title{
    grid-area: pastry-title;
}

.dessert-title{
    grid-area: dessert-title;
}

.drinks{
    grid-area: drinks;
}

.pastry{
    grid-area: pastry;
}

.dessert{
    grid-area: dessert;
}

.section{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border:1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.section__title{
    font-family: 'brownless', sans-serif;       
    font-size: 6rem;
    text-align: center;
    margin-bottom: -2rem;
}

.item{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
    font-size: 1.7rem;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

@media (max-width: 1080px) {
    .content{
        grid-template-areas: 
        'drinks-title'
        'drinks'
        'pastry-title'
        'pastry'
        'dessert-title'
        'dessert';
    }

    .section__title{
        font-size: 4rem;
    }

    .cafe-name{
        font-size: 3rem;
    }
}

@media (max-width: 380px) {
    .section__title{
        font-size: 3rem;
    }

    .item{
        font-size: 1rem;
    }
}