.header{
    height: 6rem;
    width: 100%;

    display: flex;
    align-items: center;

    background-color: #605B56;
    position: relative;
    top: 0;
    left: 0;

    text-align: center;
    font-size: 3rem;
    font-family: "Berlin Sans FB", cursive;
    color: #F2FBE0;

    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.header h1{
    margin: 0;
    text-shadow: 0 0 8px #F2FBE0;
}

.header-img {
    height: 6rem;
    filter: drop-shadow(0 0 3px #F2FBE0);
}



body{
    margin: 0;
    font-family: "Berlin Sans FB", cursive;
    background-image: linear-gradient(145deg, #9B918B, #CCBFB7);
    background-attachment: fixed;
}

.nav-bar{
    position: sticky;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 4rem;

    margin: 0;

    background-color: #837A75;

    justify-content: space-evenly;

    border-bottom: #605B56 solid 1px;
    z-index: 10;
}

.nav-bar h2{
    color: #dad8d7;
    transition:transform 0.2s, text-shadow 0.2s;
    font-size: 1.5rem;

}

.nav-bar h2:hover{
    text-decoration: underline;
    cursor: pointer;
    text-shadow: 0 0 3px #E5E5E3FF;
    transform: scale(1.2);
    color: #E5E5E3FF;
}

.pop-up{
    margin: 0;
}

.pop-up h3{
    color: crimson;
}

.pop-up h3, h4{
    margin: 0;
}

.pizza-background{
    position: absolute;
    height: 30vh;
    width: 30vh;
    border-radius: 25%;
    top: 12rem;
    right: 2rem;
    opacity: 0.75;
    z-index: -1;
    background-color: #d7cdc7;
    box-shadow: 0 0 0.2rem black;
}

.pizza-img{
    transition: transform 0.5s ease;
    position: absolute;
    top: 13rem;
    right: 2rem;
    height: 30vh;
    float: right;
}

.flash-card, .flash-card-right, .flash-card-left{
    margin-top: 2rem;
    background-color: #9b918b;
    width: 65%;
    padding: 1rem;
    border-radius: 2rem;
    box-shadow: 0 0 1rem black;
    transition: 0.25s;
    color: #d7d1d1;
}

.flash-card p, .flash-card-right p, .flash-card-left p{
    font-size: 1.2rem;
}

.flash-card h1, .flash-card-right h1, .flash-card-left h1{
    text-shadow: 0 0 80px #d7d1d1;
}

.flash-card-right{
    float: right;
    text-align: right;
    margin-right: 1rem;
}

.flash-card-left{
    margin-top: 17rem
}

.main{
    padding-left: 1rem;
}

.main h1{
    font-size: 4rem;
    margin: 0;
}

.main hr{
    margin: 0;
}

footer{
    background-color: #837A75;
    margin-top: 3rem;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 14rem;
}

.footer-row{
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
}