/*------------- CSS PORTAL BRAYAANPS -------------*/
/*--------- Hecho por BrayaanPS -- https://brayaanps.com ---------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body, html {
  height: 100%;
  overflow: hidden;
}

body {
  background: url('https://brayaanps.com/images/background.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
}

.logo {
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.logo img {
  width: 150px;
}

.btn {
  display: block;
  width: 200px;
  padding: 15px;
  margin: 10px auto;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  text-align: center;
}

.btn:hover {
  transform: scale(1.05);
}

.discord {
  background-color: #7289da;
}

.tienda {
  background-color: #e5db0a;
}

.wiki {
  background-color: #63bd0a;
}
