body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    color: #484848;
    font-size: 14px;
    font-family: Circular,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

.main-content {
    flex: 1;
}

.container {
    max-width: 1000px;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.arcade_img {
    width: 120px; /* Adjust the width as needed */
    height: auto; /* Maintain the aspect ratio */
  }

/* styles.css or inline style */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns with equal width */
    gap: 20px; /* Gap between items */
}

.recipe-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    border: 1px solid #ccc;
}


.navbar-dark .navbar-nav .nav-link:hover {
    color: orange;
}


.container {
    width: 100%;
}

/* Contact Page Styling */

.contact1{
    display: block;
    margin-left: auto;
    width: 100%;
    float: right;
    width: 50%;
}


.contact2 {
    display: block;
    margin-left: auto;
    width: 100%;
    float: left;
    width: 50%;
}



/* Arcade Styling */
.arcade-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* You might want to adjust this depending on your page layout */
    width: 100%; /* You might want to adjust this depending on your page layout */
    height: 75vh; /* You might want to adjust this depending on your page layout */
    padding: 20px;
}

.arcade-demo {
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

.canvas-container {
    position: relative;
    width: 100vw;  /* Adjust based on your preference */
    height: 80vh; /* Adjust based on your preference */
    padding-top: 45%;  /* Adjust based on the aspect ratio of your game */

}

.game-screen, .iframe-container {
    position: absolute;
    object-fit: fill;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.game-screen {
    z-index: 1;
    object-fit: fill;
    top: 0;
    left: 0;
    width: 100%;
    
}


.iframe-container {
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: fit-content;
    position: absolute;  /* This will overlay the iframe over the image */
    top: 0;   /* Adjust as needed */
    left: 0;  /* Adjust as needed */
    width: 100%;
    height: 60vh;
}

.game-iframe {
    border: yellow 10px solid;
    display: flex;
    overflow: hidden;
    justify-content: center;
    width: 100%;
    height: 480px;;
    position: relative;
    top: 0;
    left: 0;

}

..game-iframe {
    
}

/** Styling for the game instructions */

.game-instructions {
    margin-top: 0px; /* Adjust the margin value as needed */
    width: 100%;
    background-color: rgb(221, 220, 211);
    height: 100;
    text-align: center;
    border-top: 4px solid #ffa200;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}



/* Responsive Styling  for recipe.html*/
#recipe-imgs img {
    max-width: 100%; /* Ensure images don't exceed their container's width */
    height: auto; /* Maintain aspect ratio while resizing */
    display: block; /* Remove inline whitespace */
    margin-left: auto; /* Center images */
    margin-right: auto; /* Center images */

    }
#recipe-list {
    border: 8px solid #030394; /* Add a border around the container */
    padding: 10px; /* Add some padding for spacing */
    margin: 10px; /* Add some margin for spacing */
    margin-left: auto; /* Center the container */
    margin-right: auto; /* Center the container */

  }
