html {
    box-sizing: border-box;
    font-family: "Sniglet", system-ui;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.3px;
  }
  
  body {
    background-image:url("background.jpg") ;
    background-size:cover;
    background-position: center;
    background-attachment: fixed;
    padding: 20px;
  }
  
  .container {
    max-width: 900px;
    margin: auto;
    background: #fdfbe7 ;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid #ffbe98;
  }
  
  /* HEADER */
  .header {
    height: 180px;
    background-image:url(cabeza.png);
    background-size: cover;
    position: relative;
  }
  
  .header h1 {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
  }
  
  /* WELCOME */
  .welcome {
    background: #ffbe98;
    text-align: center;
    padding: 10px;
    font-weight: bold;
  }
  
  /* MAIN GRID */
  .content {
    display: grid;
    grid-template-columns: 0.7fr 2fr 0.7fr;
    gap: 15px;
    padding: 15px;
  }
  
  /* LEFT */
  .left {
    background: #f6efd8;
    padding: 10px;
    border-radius: 10px;
  }
  
  .profile-pic {
    background-image:url("pic.jpg") ;
    background-size:cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 120px;
    background: #Fadcd9;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  
  .box {
    background: #Fef7dc;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.9em;
  }
  
  /* CENTER */
  .center h2 {
    text-align: center;
    color: #Fadcd9;
  }
  
  .columns {
    display: flex;
    gap: 10px;
  }
  
  .card {
    background: #f6efd8;
    padding: 10px;
    border-radius: 10px;
    flex: 1;
  }
  
  /* RIGHT */
  .right {
    background: #Fadcd9;
    padding: 10px;
    border-radius: 10px;
  }
  
  .right a {
    display: block;
    background: #e6f4c7;
    margin: 5px 0;
    padding: 6px;
    text-decoration: none;
    color: #4a5d23;
    border-radius: 6px;
  }
  
  .right h4 {
    margin-top: 10px;
  }