html {
  font-family: Courier New;
  height: 100%;
  width: 100%;
}

body {
    font-family: Courier New;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    height:800px;
    padding: 0px;
    max-width: 1800px;
    margin-left:auto;
    margin-right:auto;
    margin-top: auto - 5px;
}

h1 {
    font-family: Courier New;
    text-align: center;
    font-size:48px;
    margin: 50px 0;
}

.grid-item {
    width:250px;
    height:300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-align: center;
    transition: transform 0.3s ease;
    overflow: hidden;
    display:inline-block
}

.footer {
  margin-top: auto;
  background-color: #595959;
  color: white;
  text-align: center;
  padding: 18px 0;
}

.footer a {
  color: white;
  text-decoration: none;
  font-size:20px;
  margin: 0 45px;
}