body {
  font-family: Arial, sans-serif;
  background-color: #2b2d42;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url(/images/background.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  max-width: 400px;
  width: 200px;
  text-align: center;
  background-color: #191a22;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  scale: 1.1;
}

.name {
  color: #5ab53e;
}

h1 {
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
}

ul.links {
  list-style: none;
  padding: 0;
}

li {
  margin: 10px 0;
}

a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #2b2d42;
  transition:
    padding 0.3s,
    background-color 0.4s,
    scale 0.3s,
    box-shadow 0.6s,
    color 0.4s ease;
  height: 20px;
}

a:hover {
  background-color: #ffffff;
  color: #000000;
  scale: 1.05;
  box-shadow: 0px 0px 20px #5ab53e;
  padding: 12px;
}

img {
  width: 35px;
  margin-right: 10px;
}

footer {
  color: rgba(255, 255, 255, 0.257);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.257);
  height: 22px;
  border-radius: 4px;
  margin-top: -5px;
}
