* {
  margin: 0;
  font-family: "Cormorant SC";
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: linen;
}

header div {
  background-image: url(header.jpg);
  background-size: 100%;
  background-repeat: no-repeat;

  height: 219px;
  width: 100%;
}

nav {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}

nav ul li {
  margin: 4px;
  padding: 4px;
  border: 2px solid white;
}

nav ul li:focus {
  border: 2px dashed black;
  border-radius: 8px;
  outline: none;
}

main {
  width: 99%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.largeSize {
  font-size: large;
}

.seventyPercent {
  width: 70%;
}

.eightyPercent {
  width: 80%;
}

hr {
  border: 1px solid black;
  margin: 50px 0;
}

#loginForm {
    width: 18rem;
    margin-bottom: 0;
}

form {
    background-color: linen;
    border-radius: 1rem;
    padding: 0.5rem;
}

input[type=text], input[type=password] {
    background: transparent;
    border: none;
    border-bottom: 0.0625rem solid #000000;
    font-family: Times New Roman;
}

.flexSpaceBetween {
    display: flex;
    justify-content: space-between;
    width: 16rem;
    margin: 0.25rem;
}

.loginButton {
    margin: 0.5rem;
}


.middle {
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: x-large;
            }

            .category {
                width: 22rem;
                /* margin: auto; */
                padding: 2rem;
            }

            .header {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .item {
                height: 2.5rem;
                border-radius: 2rem;
                box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
                margin: 1.5rem 0;
                width: 20rem;
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-size: large;
                padding: 0 1rem;
                cursor: pointer;
            }

            .grill-button {
                display: inline-block;
                height: 2.5rem;
                background-color:linen;
                border-radius: 2rem;
                box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
                border: none;
                padding: 0 1rem;
                font-family: "Cormorant SC";
                font-size: large;
                margin: 0;
                cursor: pointer;
            }

            .grey {
                background-color: lightgrey;
            }

            .linen {
                background-color: linen;
            }

            .delete {
                color: red;
                justify-self: right;
                font-size: x-large;
                padding-left: 0.75rem;
                border-left: 0.0625rem black solid;
            }

            .delete:hover {
                cursor: pointer;
            }

            #grill-main {
                display: flex;
                align-items: start;
                justify-content: center;
                flex-wrap: wrap;
            }

            .hidden {
                display: none;
            }

            #grill-blanket {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                z-index: 1;
                background-color: rgb(0 0 0 / 0.2);
            }

            #grill-popover {
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                z-index: 2;
                width: 25rem;
                height: 10rem;
                box-shadow: 0 1rem 3rem rgb(0 0 0 / 0.6);
                background-color: white;
                border-radius: 0.5rem;
                padding: 1rem;
            }

            .no-scroll {
                overflow: hidden;
            }

            .pop-header {
                height: 2rem;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .pop-content {
                height: 3.5rem;
                width: 100%;
                padding: 1rem 0;
            }

            .pop-footer {
                height: 2.5rem;
                display: flex;
                justify-content: space-around;
                align-items: center;
                width: 100%;
            }