body {
    background-color: darkorchid;
    
    color: black;
    
}
.Logo {
    display: flex;
    justify-content: center;
    align-items: center;
   font-family: Arial, Helvetica, sans-serif;
   font-weight: bolder;
   font-size: xx-large;
   margin-bottom: 20px;
}

.tiles {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    width: 500px;
    height: 400px;
    border: solid black 4px;
    align-items: flex-end;
    
}

.tile {
    display: flex ;
    border: solid black 4px;
    margin: 3px;
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 700px;
}
.controls {
    display: flex;
    flex-direction: row;
    height: 75px;
    width: 1000px;
    border: solid black;
    justify-content: space-around;
    align-items: center;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
}

.button {
    width: 160px;
    height: 50px;
    font-weight: bolder;
    font-size: larger;
    border: 2px solid black;
    border-radius: 20px;
    background-color:deepskyblue
}
.grid {
    height: 505px;
    width: 800px;
    border: 3px solid black;
    margin: 20px;
    background: white;
    flex-direction: column;
}


.footer {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: large;
    font-weight: 500;
    align-self: flex-end;
    background-color: deepskyblue;
}

