/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-color: #f3f4f6;
    font-family: Arial, sans-serif;
  }
  
  /* Header Styles */
  header {
    width: 100%;
    padding: 20px;
    background-color: #333;
    color: white;
    text-align: center;
  }
  
  header h1 {
    font-size: 24px;
  }
  
  /* Container for Links */
  .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 90%;
    max-width: 900px;
    justify-content: center;
    margin: 40px 0;
  }
  
  .box {
    text-decoration: none;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .linkedin { background-color: #0a66c2; }
  .instagram { background-color: #c31bc9; }
  .twitter { background-color: #1da1f2; }
  .portfolio { background-color: #ff6347; }
  .blog { background-color: #ffb600; }
  
  .box:hover {
    transform: translateY(-10px);
    opacity: 0.9;
  }
  