/* styles.css */
* {
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    background: url(images/kaaba.jpg) no-repeat center center fixed; 
    background-size: cover;
  }
  
  .wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  
  .header {
    background-color: #333;
    padding: 20px;
    text-align: center;
    color: white;
  }
  
  .container {
    flex: 1;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #333;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: auto; /* Ajoute un défilement interne si le contenu dépasse la taille du conteneur */
  }
  
  h2 {
    text-align: center;
    color: #000;
  }
  

  form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  form label {
    display: block;
    margin-bottom: 10px;
    color: #000;
  }
  
  form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 20px; /* Coins arrondis */
  }
  
  form button {
    margin-top: 10px;
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 100px;
    cursor: pointer;
  }
  
  form button:hover {
    background-color: #45a049;
  }
  
  form button:active {
    background-color: #3e8e41;
  }
  
  form input[type="text"]:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(81, 203, 196, 0.5);
  }
  
  .footer {
    background-color: #333;
    padding: 10px;
    text-align: center;
    color: white;
    font-size: 14px;
    margin-top: auto;
  }
  


  /* styles.css */
/* Vos styles CSS existants */

.twitter-button {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    background-color: #1da1f2;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
  }
  
  .twitter-button i {
    margin-right: 5px;
  }
  
  .twitter-button:hover {
    background-color: #0c85d0;
  }
  

