* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    width: 100%;
    height: 100%;
    background-color: #0C1A2C;
    font-family: sans-serif;
    position: relative;
  }
  
  .image-wrapper {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2vh; /* Add a little breathing room to avoid cutoff */
  }
  
  .image-wrapper img {
    max-width: 100%;
    max-height: 96vh; /* Keeps bottom text from getting cut off */
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  }
  
  /* LinkedIn Icon Link */
  .linkedin-link {
    position: absolute;
    top: 20px;
    right: 70px;
    z-index: 10;
  }
  
  .linkedin-link img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
  }
  
  .linkedin-link img:hover {
    transform: scale(1.1);
  }