body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-size: cover;
  background-position: center;
  height: 100vh;
}


.content {
  margin-left: 250px;
  padding: 20px;
}

h2 {
  color: whitesmoke;
  text-align: center;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  grid-gap: 20px;
}

.tile {
  background-color: #fff;
  padding: 70px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.tile.span-two {
  grid-column: span 2;
}

.tile:hover {
  transform: translateY(-5px);
}


.tile h3 {
  margin-top: 0;
  color: #333;
}

.tile p {
  margin-bottom: 0;
  color: #666;
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0171d3;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

.logout-form {
  display: inline-block;
}

.logout-button {
  background-color: red;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.logout-button:hover {
  background-color: #d32f2f;
}

.nav {
  position: fixed;
  padding-top: 20px;
  padding-bottom: 10px;
  margin-left: 5px;
  padding: 10px;
}

h1.green-bg {
  background-color: lightblue;
  color: black;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  margin: 0;
  width: 100%;
}

h1.white-bg {
  background-color: white;
  color: black;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  margin: 0;
  width: 100%;
}

h1.white-bg+h1.green-bg {
  margin-top: 50px;
}

.logout-form {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10px;
}

.logout-button {
  background-color: red;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.logout-button:hover {
  background-color: #d32f2f;
}