*,::after,::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    color: white;
    background-image: url(Background.png);
    background-position: center;
    background-repeat: no-repeat;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

header{
    height: 100px;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #210d07ba;
    font-family: "Great Vibes", cursive;
    font-weight: 100;
    font-style: normal;
}

.great-vibes-regular {
  }
  

.cafe-name{
    font-size: 3rem;
}

.section{
    display: grid;
    grid-template-areas: 
    'title title img'
    'content content img';
    gap: 1rem;
    padding: 1rem;
}

.section:nth-of-type(1){
    margin-top: 1rem;
}

.section__header{
    grid-area: title;
}

.section__items{
    grid-area: content;
}

.section__img{
    grid-area: img;
}

.section__icon{
    width: 3rem;
}

/* Reducing cupcake size */
.section:nth-of-type(3) .section__icon{
    width: 2.2rem;
}

/* Reducing grilled cheese AND cheese cake text size */
.section:nth-of-type(2) .item:nth-of-type(1) .item__name,.section:nth-of-type(3) .item:nth-of-type(2) .item__name{
    font-size: 1.1rem;
}

.section__img{
    width: 33vw;
    margin: auto;
}

.section__header{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-bottom: white solid 2px;
    font-family: 'Blackadder ITC', sans-serif;
}

.section__title{
    margin-left: auto;
    font-size: 3rem;
}

.section__items{

}

.item{
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
}

.item__name{
}

.item__price{
    font-size: 1.2rem;
}

.pastry{
    grid-template-areas:
    'img title title'
    'img content content';
}