    body {
      background: #121528;
      font-family: Raleway, sans-serif;
      font-weight: 600;
      font-size: 20px;
    }
    .link img {
      margin-right: 8px; /* Adds some space between the image and the text */
      width: 50px;       /* Adjust the size of the icon as needed */
      height: 50px;
    }
    /* Basic styling to make the form look a bit nicer */
  .linktree {
      max-width: 800px;
      margin: auto;
      padding: 20px;
      border: 1px solid #ccc;
      border-radius: 5px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      font-family: Raleway, sans-serif;
      font-weight: 600;
      color: white;
      background: #202439;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
   .logo {
      margin-bottom: 40px;
      max-width:200px;
    }
    
   .link-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    
   .link {
      margin: 20px;
      padding: 20px;
      border: 1px solid #ccc;
      border-radius: 5px;
      width: 100%;
      background: #121528;
      color: white;
      text-align: center;
      cursor: pointer;
    }
    
   .link:hover {
      background: #202439;
    }
    
   .link a {
      text-decoration: none;
      color: white;
    }
    .alert{
	background: green;
	color: white;
	font-family: Raleway, sans-serif;
    font-weight: 600;
	padding: 10px;
	text-align: center;
	border:1px solid #b32929;
	
}