@media (min-width: 1200px) {
    .container {
      width: 1000px;
    }
  }

.appBackground {
    background-image:url(../images/Saved-By-The-Bell.png);
    background-size:cover;
}

.header {
    min-height: 50px;
}

.content {
    margin-bottom: 20px;
}

.party-size {
    font-family: 'Permanent Marker', cursive;
    color: #9d55ea;
}

.input-card {
    padding-left: 15px;
    padding-bottom: 15px;
}

.group-label {
    width: 112px;
}

.top-buffer { margin-top:20px; }

.pizza-card {
    height: 110px;
    padding-left: 15px;
    margin-top: 15px;
}

.btn-primary {
    margin-right: 10px;
    background-color: #808df6;
    border-color: #363434c5;
    /* background-color: #ffe552;
    border-color: #2ed3cc; */
}

#pizza-spinner {
    animation: rotation 3s infinite linear;
    display:none;
    /* display:inline; */
}
@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}

.footer {
    width: 100%;
    height: 40px; /* Set the fixed height of the footer here */
    line-height: 40px; /* Vertically center the text there */
    background-color: #4551c7;
}

.email-link {
    color: #ffe552;
    font-weight: 600;
}
.email-link:hover {
    color: #fd89ff;
}