@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');


* {
    box-sizing: border-box;
  }
  
  html,body {
  font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;

  }
  
  .linktree {
    align-items: center;
    display: flex;
    flex-direction: column;
  
  
  }
  
  .logo img {
    margin-top: 10px;
    width: 150px; /* Ajusta el tamaño según tu necesidad */
  }
  
  h1 {
    font-size: 25px;
    margin-bottom: 50px;
  }
   
  a {
      color: #000;
    border: 1px solid #080e31;
    display: flex;
    text-decoration: none;
    margin: 10px 0;
    justify-content: center ;
    height: 55px; 
    width: 550px ;
    margin-bottom: 15px ;
    border-radius: 50px;
    transition: background-color 0.3s;
    position: relative;
    text-align: center;
    align-items: center;
    transition: transform .4s;
  }
  
  .twitter{
      margin-bottom: 5px;
  }
  

  
  a:hover {
    background-color: #fff;
  color: #080e31;
    transform: scale(1.1);
  }
  
  a i {
    width: 50px;
    font-size: 25px;
    position: absolute;
    left: 10px;
  }
  
  @media screen and (max-width: 768px) {

    
    .logo img {
      margin-top: 5px;
      margin-bottom: 5px;
    }
    
    
    
    h1 {
      font-size: 20px;
      margin-bottom: 20px;
    }
    
    .twitter{
          margin-bottom: 20px;
    }
    
    a {
        margin-bottom: 20px;
      width: 250px;
      height: 45px;
    }
    


  }
  