html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Protest Revolution", sans-serif;
}

.background {
  min-height: 100vh; 
  display: flex;
  flex-direction: column;
  background-color: rgb(103, 90, 64); /* Background color */
  background-image: url("Soothing-nature-backgrounds-2.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: flex;
}

header {
  text-align: center;
  margin-top: 20px;
}

.pasveikinimas .tekstas{
  border-radius: 20px;
  color: rgb(107, 107, 72);
  background-color:rgba(255, 255, 255, 0.473);
  padding: 1px 0px 1px 0px;
  margin-left: 35%;
  margin-right: 35%;
  font-size: 2.05rem;
  font-weight: bold;

}

.main-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.bottom-links {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  box-sizing: border-box;
}

.coolBeans {
  display: block;
  margin: 10px 0;
  text-align: center;
  font-size: 20px;
  text-decoration: none;
  color: white;
  background-color: #b3b000; 
  border: 2px solid #b3b000; 
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.coolBeans:hover {
  background-color: #b3b000;
  color: white;
  transform: scale(1.05);
}


.discordbotai {
  color :rgb(193, 193, 114);
  font-size: 20px;
}

.vientisaspalva{
  background-color: #4e4e3e
}
.discordserveriai {
  color :rgb(193, 193, 114);
  font-size: 20px;
}

.svetaines {
  color :rgb(193, 193, 114);
  font-size: 20px;
}

.susisiekimas {
  color :rgb(193, 193, 114);
  font-size: 20px;
}

.atsiskaitymai {
  color :rgb(193, 193, 114);
  font-size: 20px;
}

.hostingas {
  color :rgb(193, 193, 114);
  font-size: 20px;
}
.coolBeans {
  border: 2px solid currentColor;
  border-radius: 3rem;
  color: white;
  font-family: roboto;
  font-size: 16px;
  font-weight: 100;
  overflow: hidden;
  padding: 1rem 2rem;
  position: relative;
  text-decoration: none;
  transition: .2s transform ease-in-out;
  will-change: transform;
  z-index: 0;
}

.coolBeans::after {
  background-color: #b3b000;
  color: white;
  border-radius: 3rem;
  content: '';
  display: block;
  height: 0%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: .2s transform ease-out;
  will-change: transform;
  z-index: -1;
}

.coolBeans:hover::after {
  transform: translate(0, 0);
  height: 100%;
}

.coolBeans:hover {
  border: 2px solid transparent;
  color: white;
  transform: scale(1.05);
  will-change: transform;
}












