/* title animations */
@keyframes titleAnimation {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes titleNeon {
    0% {
        text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #fff, 0 0 8px #800000, 0 0 14px #800000, 0 0 16px #800000, 0 0 20px #800000, 0 0 30px #800000;
    }
    100% {
        text-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 3px #fff, 0 0 4px #800000, 0 0 7px #800000, 0 0 8px #800000, 0 0 10px #800000, 0 0 15px #800000;
    }
}


.animated-title {
    text-align: center;
    font-size: 96px;
    color: #ffffff;
    font-family: "Pacifico", cursive;
    animation: titleAnimation 1s ease-out forwards, titleNeon 1.5s infinite alternate;
}

/* diner backgroud */
body 
{
    background-image: url("dinerbackground.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.start-buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

button {
    font-weight: bold !important;
    font-size: 60px !important;
    padding: 8px 16px !important;
    margin: 0 2px !important;
    background-color: #500000 !important;
    color: white !important;
    border-color: white !important;
    border-radius: 20px !important;
    font-family: "Pacifico", cursive !important;
    opacity: 0.95 !important;
}

#music-button {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}



#order-button:hover {
    box-shadow: 0 12px 16px 0  #ffffff, 0 17px 50px 0  #ffffff;
  }

#make-button:hover {
    box-shadow: 0 12px 16px 0 #ffffff, 0 17px 50px 0 #ffffff;
  }

#music-button:hover {
    box-shadow: 0 12px 16px 0 #ffffff, 0 17px 50px 0 #ffffff;
  }
  


