
html, body {
    background-image: url('pix/diner4.png');
    background-size: cover;
    background-repeat: no-repeat;
    /* Additional background properties can be added as needed */
}


h1 {
    color: rgb(255, 255, 255);
    background-color: rgba(0, 0, 0, 0.5);
    font-family: 'Abril Fatface', sans-serif;
    text-align: center;
    letter-spacing: 3px;
    font-size: 80px;
}
h3 {
    color: rgb(248, 242, 241);
    letter-spacing: 3px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
button {
    display: inline-block;
    background-color: #860000;
    border-radius: 10px;
    border: 4px double #000000;
    color: #eeeeee;
    text-align: center;
    font-family: 'Abril Fatface', sans-serif;
    letter-spacing: 1px;
    font-size: 30px;
    padding: 20px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;

    
}

#button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#image {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
h2 , h3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.play-pause {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px;
}

.fa-pause {
    color:rgb(0, 0, 0);
}

.fa-play {
    color: rgb(0, 0, 0);
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-container img {
    border-radius: 50%; /* Make the image circular */
    border-color:#2e0eb0;
    width: 600px; /* Adjust size as needed */
    height: 600px; /* Adjust size as needed */
    animation: spin 10s linear infinite; /* Add rotation animation */
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}