html {
	--background-color: #ebebe3;
	--primary: #2b2b2c;
}

body{
    background-color: var(--background-color);
    font-family: "Unica One";
    color: var(--primary);
}

#content{
    height: auto;
}

.header{
    width: 825px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid var(--primary);
    border-radius: 5px;
    text-shadow: rgb(185, 233, 247) 1px 1px;
}

.body{
    width: 825px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    border: 2px solid var(--primary);
    border-radius: 5px;
}

img {
    margin: 0px;
    border-radius: 5px;
}

#pazzo{
    display: inline-block;
    width: 25%;
   
}

.nav{
    display: flex;
    width: 200px;
    justify-content: space-around;
    
}

.nav-link {
    font-size: 22px;
    text-decoration: none;
     color: var(--primary);
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    cursor: pointer;
    border-bottom: 2px solid var(--primary);
}

.nav-link:active {
    color: var(--primary);
}

.active-link{
    border-bottom: 2px solid var(--primary);
}

#intro{
    padding: 20px;
    display: flex;
    text-shadow: rgb(185, 233, 247) 2px 2px;
}

#pepperoni{
    width: 50%;
}

#about{
    margin-top: 60px;
    width: 100%;
    text-align: center;
}

.menu-section{
    padding: 30px;
}

.dish{
    width: 70%;
    margin: 0 auto;
}

.dish-header{
    display: flex;
    font-size: 26px;
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
    height: 50px;
}

.price{
    display: flex;
    align-items: center;
    justify-content: center;
}

h4{
    border-radius: 50%;
    font-size: 32px;
    padding: 5px;
    margin-left: 5px;
    /* invert text and background color */
    background-color: var(--primary);
    color: var(--background-color);
}

.pizza-dish {
    margin-top: 20px; 
    display: none;
}