body {
    background-color: #454545;
    color: #EEE;
    margin-top: 0;
}

hr {
    border-right : 0;
    border-left: 0;
    color: #EEE;
}

a, a:visited, a:active {
    color: #EEE;;
    font-weight: bold;
}

a:hover {
    text-decoration: none;
    
}

.content {
    height: 100vh;
    width: 70%;
    background-color: #333;
    margin: auto;
    padding: 10px;
}

.content table {
    width: 100%;
}

.titleRow {
    height: 50px;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.title {
    font-family: 'Fira Code', 'Courier New', Courier, monospace;
    font-size: 25pt;
    margin-top: 5px;
    margin-bottom: 0;
    padding: 5px;
}

.grey {
    color: grey;
}

.alias {
    color: #c8745b;
    opacity: 0.5;
}

.colon {
    color: #ffcb6b;
    opacity: 0.5;
}

.aml {
    color: #EEE
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #000;
  color: white;
  text-align: center;
}

.fa {
  font-size: 60px;
  width: 60px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  color: #000;
  vertical-align: middle;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
}

.insta-post img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.insta-post img:hover {
  transform: scale(1.03);
}
