
.linktree {
  animation: bounce 1s ease;
}

body {
  background: #212529 url("img/bg.png");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  animation: fadeIn 0.5s ease;
  font-family: 'Jost', sans-serif;
}

.linktree {
  background-color: #2f2f2fc4;
  color: #eee;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 800px;
}

h1 {
  margin-top: 0;
  color: #212529;
}
h2 {
	text-align: left;
}

ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

li {
  margin-bottom: 10px;
}

a {
  display: block;
  background: #ffc107;
  color: #212529;
  text-decoration: none;
  padding: 20px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

a:hover {
  background: #fd7e14;
}

a span {
  margin-left: 10px;
  padding: 3px 8px;
  background: #dc3545;
  color: white;
  border-radius: 3px;
}

.images {
	width: 100%;
	border-radius: 15px;
}

#tree-name {
    background: url("img/icon.png");
    text-align: left;
    background-size: cover;
    vertical-align: middle;
    line-height: 225px;
    padding-left: 15px;
    text-transform: lowercase;
    color: #eee;
    height: 225px;
    border-radius: 15px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Mobile version */
@media (max-width: 750px) {
  .linktree {
    width: 80%;
  }

  h1 {
    font-size: 24px;
  }

  a {
    padding: 14px;
  }

  a span {
    padding: 3px 6px;
  }

  .images {
    width: 100%;
    height: auto;
  }

  #tree-name {
    text-align: left;
    padding: 15px;
    vertical-align: middle;
    line-height: 130px;
    height: 130px;
  }
}

/* Add animations here */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-6px);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  
  100% {
    opacity: 1;
  }
}

a {
  animation: fadeIn 0.5s ease;
}
