/* Body styling */
body {
    background-color: #4e8656;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

/*Entire Website in here */
.website{
    width: 1100px;
    margin: 0 auto;
    padding: 0;
}

/*Navigation Bar */
.navBar {
    position: relative;
    width: 100%;
    height: 40px;
    border-radius: 10px 10px 0 0;
    background-color: gray;
    display: flex;           /* Use flexbox for layout */
}

/* Style the links inside the navigation bar */
.navBar a {
    flex: 1;                 /* Each link gets equal width */
    color: #f2f2f2;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px 0;         /* Vertical padding only */
    text-align: center;      /* Center text */
    display: block;          /* Make the whole area clickable */
    transition: background-color 0.3s; /* Smooth transition for hover */
}

/* Change the color of links on hover */
 .navBar a:hover {
    background-color: #ddd;
    color: black;
}
  
.gameContainer {
    position: relative;
    width: 100%;
    height: 560px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.aboutSection{
    height: 600px;
    width: 1100px;
    border-radius: 10px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(231, 224, 191);
}

.header{
    text-align: center;
    font-size: 30px;
}

.paragraph{
    text-align: left;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.3;
}