#header {
  grid-area: header;
}
#footer {
  grid-area: footer;
}
#main {
  grid-area: main;
}

@font-face {
  font-family: franklin;
  src: url('franklin.ttf');
}

body {
  overflow: hidden;
}

#grid-container {
  display: grid;
  grid-template-areas:
      'header'
      'main'
      'footer';
  gap: 10px;
  padding: 10px;
  font-family: franklin;
  height: 100vh;
}

#activities {
  width: 80%;
  display: flex;
  justify-content: center;
}

#main {
  display: flex;
  justify-content: center;
  align-items: center;
}

#header {
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer {
  display: flex;
  justify-content: center;
  width: 100%;
}
#footer-content {
  display: flex;
  justify-content: space-between;
  width: 80%;
}

.center-footer {
  height: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  border: solid 5px;
  border-color: #fc5200;
}

#status-div {
  border-bottom: 3px solid #fc5200;
}

h1 {
  font-size: 3em;
}

table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  width: 70%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  table-layout: fixed;
}

table thead tr {
  background-color: #fc5200;
  color: #ffffff;
  text-align: left;
}

table th,
table td {
  padding: 12px 15px;
}

table tbody tr {
  border-bottom: 1px solid #dddddd;
}

table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

table tbody tr:last-of-type {
  border-bottom: 2px solid #fc5200;
}

table th:nth-child(4),
table td:nth-child(4) {
  width: 30%;
}

a {
  display: inline-block;
  background-color: #fc5200;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 0.9em;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

a:hover {
  background-color: #e04600;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

a:active {
  background-color: #c83e00;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

a:focus {
  outline: 2px solid #fc5200;
  outline-offset: 2px;
}

a,
a:link,
a:visited {
  color: white !important;
  text-decoration: none;
}