@import url('https://fonts.googleapis.com/css2?family=Festive&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin:0; 
    padding:0;
    box-sizing: border-box;  
}

.container {
  background: radial-gradient(#CFB3CD,  #888098, #344055);
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rama {
    width: 100%;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
}
.adorno {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    animation: animar .8s linear infinite;
}

@keyframes animar {
   0% {
       background: var(--color);
       transform: scale(1);
    }
    100% {
        background: var(--color);
        box-shadow: 0px 0px 10px var(--color);
        transform: scale(.3);
   }    
}

.rama p {
    padding-top: 3rem;
    font-size: 2.2rem;
    color: #fff;
    font-family: 'Festive';  
}





.buymeacoffee {
  text-decoration: none;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: #FFDD00;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  transition: all 0.1s linear;
  box-shadow: 0.2rem 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buymeacoffee:hover {
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
}


