.container, body, html{
    height: 100%;
    margin: 0%;
}

.intro {
    color: whitesmoke;
    text-indent: 30px;
    font-size: xx-large; 
    flex: 5;
    padding: 30;
    text-align: center;
}
.picture {
    flex: 1;
    padding: 25px;

}
img { 
    max-width: 100%;
    height: auto;
    
}
.header {
    background-color:rgb(156,175,136);
    flex:1;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 5%;
    border-bottom: 2px white solid;
    border-width: 2px;
}
.container {
    display: flex;
    flex-direction: column;
}
.content {
    background: linear-gradient(to bottom,rgb(156,175,136), #2C3E16);
    flex:15; 
    display: flex;
    flex-direction: rows;
    padding-top: 20px;
}
.link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #556B2F;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    font-weight: bold;
    transition: background-color 0.3s ease;

}
.link:hover {
    background-color: #354D20;
}
.spacer {
    flex: 1;
}
.imgBack {
    background-image: url("./resources/desktop.png");
    flex: 15;
    background-size: cover;
    background-position: center;
}
.table {
    background-color: rgb(156,175,136);
    flex:15; 
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    justify-content: center;
    align-items: center;
    padding-left: 20px;

}
.tableContainer {
    justify-content: center;
    align-items: flex-start; 
}

thead th {
    /* background-color: #2C3E16; */
    color: #ffff;
    font-size: xx-large;
    font-weight: bold;
    /* background-image: url('.//resources/arrow.png'); 
    background-repeat: no-repeat; 
    background-position: right center; 
    padding-right: 20px; */
}

tr:nth-child(odd) {
    background-color: #556B2F;
    color: white;

}
tr:nth-child(even) {
    background-color: 2C3E16;
    color: black;
}
tr {
    font-size: large;
}
input {
    width: 60%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333; 
}
:root {
    --grid-cols: 1;
    --grid-rows: 1;
}
  
#snakeCanvas {
    width: 100%;
    height: 100%;
    display: block;
    border: 2px solid black; /* Add black border */
}