.gallery {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
  gap:10px;
  padding:10px
}
.gallery img {
  width:100%;
  height:auto;
  border-radius:8px;
  box-shadow:0 2px 5px rgba(0, 0, 0, 0.2);
  transition:transform 0.2s
}
.gallery img:hover {
  transform:scale(1.075)
}
*,
*::after,
*::before {
  box-sizing:border-box
}
:root {
  --background-color:#121212;
  --header-footer-color:#1e1e1e;
  --button-color:#6200ea;
  --button-hover-color:#3700b3;
  --text-color:#EEEEEE;
  --social-button-color:#5865F2
}
body {
  background-color:var(--background-color);
  color:var(--text-color);
  font-family:Arial, sans-serif;
  padding:0;
  overflow-x:hidden
}
footer,
header {
  background-color:var(--header-footer-color);
  padding:20px;
  text-align:center
}
main {
  padding:40px
}
button {
  background-color:var(--button-color);
  color:var(--text-color);
  border:none;
  padding:10px 20px;
  cursor:pointer;
  border-radius:5px
}
button:hover {
  background-color:var(--button-hover-color)
}
.social-buttons {
  margin-top:20px
}
.social-button {
  display:inline-block;
  margin:5px;
  padding:10px 15px;
  color:#ffffff;
  text-decoration:none;
  border-radius:5px;
  transition:background-color 0.3s
}
.social-button.discord {
  background-color:var(--social-button-color)
}
.social-button:hover {
  opacity:0.6
}
.big-bar {
  width:100%;
  height:2px;
  background-color:var(--header-footer-color);
  margin:20px 0
}
