@font-face {
    font-family: 'OpenDyslexic';
    src: url('/font/OpenDyslexic-Italic.woff2') format('woff2'),
        url('/font/OpenDyslexic-Italic.woff') format('woff'),
        url('/font/OpenDyslexic-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'OpenDyslexic';
    src: url('/font/OpenDyslexic-Bold.woff2') format('woff2'),
        url('/font/OpenDyslexic-Bold.woff') format('woff'),
        url('/font/OpenDyslexic-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'OpenDyslexic';
    src: url('/font/OpenDyslexic-Regular.woff2') format('woff2'),
        url('/font/OpenDyslexic-Regular.woff') format('woff'),
        url('/font/OpenDyslexic-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'OpenDyslexic';
    src: url('/font/OpenDyslexic-BoldItalic.woff2') format('woff2'),
        url('/font/OpenDyslexic-BoldItalic.woff') format('woff'),
        url('/font/OpenDyslexic-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
  }
  /*General Reset*/
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #870982; /*Light background*/
    color: #870982;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
  }
  
  /*Main Container*/
   .FloatingPlate {
    display: flex;
    justify-content: center; /*Center horizontally*/
    align-items: center; /*Align items vertically*/
    text-align: left; /*Align text to the left*/
    background: #1d0031;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 80%; /*Allow more width for the side-by-side layout*/
    min-height: 300px; /*Ensure enough height for medium and large screens*/
    margin: auto;
  }
  
  /*Profile Section*/
   .ProfilePlate {
    flex: 1; /*Take up equal space with links*/
    text-align: center; /*Center the profile content*/
    padding-right: 20px; /*Add spacing to the right*/
  }
  
   .ProfilePlate img {
    width: 120px; /*Slightly larger profile image*/
    height: 120px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
  }
  
   .ProfilePlate h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
   .ProfilePlate p {
    font-size: 1rem;
    color: #ffffff;
  }
  
  /*Links Section*/
  .LinkPlate {
    flex: 2; /*Allow more space for links*/
    display: flex;
    flex-direction: column; /*Ensure links remain in a column*/
    justify-content: center; /*Vertically center links*/
    padding-left: 20px; /*Add spacing to the left*/
  }
  
  .LinkPlate a {
    display: block;
    background: #6200ea; /*Purple color*/
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s ease;
    display: flex; /*Use flexbox for the link container*/
    justify-content: center; /*Center content horizontally*/
    align-items: center; /*Center content vertically*/
  }
  
  .LinkPlate a:hover {
    background: #4500b3; /*Darker purple on hover*/
  }
  
  /*Responsive Adjustments*/
  @media (max-width: 768px) {
     .FloatingPlate {
      flex-direction: column; /*Switch back to stacked layout on small screens*/
      text-align: center;
    }
  
     .ProfilePlate {
      padding-right: 0;
      margin-bottom: 20px; /*Add spacing between sections*/
    }
  
    .LinkPlate {
      padding-left: 0;
    }
  }
  @media (min-width: 800px) {
    .FloatingPlate {
      width: 80%; /*Adjust width to fill more of the screen*/
      min-height: 60vh; /*Adjust height for better spacing*/
      transform: scale(1.2); /*Scale everything up by 1.5x*/
    }
  
    .ProfilePlate img {
      width: 180px; /*Larger profile image*/
      height: 180px;
    }
  
    .ProfilePlate h1 {
      font-size: 2.5rem; /*Larger text*/
    }
  
    .ProfilePlate p {
      font-size: 1.5rem;
    }
  
    .LinkPlate a {
      font-size: 1.5rem; /*Larger link text*/
      padding: 20px 25px; /*Increase padding inside links*/
    }
  }