body {
    background-color: black;
    color: white;
    margin: 0;
    font-family: Comic Sans MS;
}
h1 {
    text-align: center;
}
p {
    text-align: center;
}

/* CENTERED A DIV, LET'S GOOOO!!! */

.Mods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  gap: 20px;
  justify-content: center;
}

.placeholder{
  width: 300px;
  margin: 0 auto;
}

a:link {
    color: blue;
}
a:visited{
  color: red;
}
a:hover{
  color: yellow;
}
a:active{
  color: white;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111;
    padding: 14px 30px;
}

.logo {
    color: white;
    font-size: 22px;
    font-weight: bold;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 16px;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #00ffd5;
}

.content {
    padding: 40px;
    text-align: center;
}

#downloadBtn {
  display: inline-block;
  background-color: red;
  color: white;
  padding: 12px 25px;
  margin-top: 20px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.2s;
}

#downloadBtn:hover {
  background-color: #cc0000;
  transform: scale(1.05);
}

#downloadBtn:active {
  background-color: #990000;
  transform: scale(0.98);
}