* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #0f2345;
    background: #d0a44f url('../assets/img/site-bg.png') no-repeat center/cover;
    font-family: 'Inter', sans-serif;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  .container {
    background-color: #0f2345;
    border: 1px solid #ebce85;
    border-radius: 30px;
    padding: 30px 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
  }
  
  .name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }
  
  .image-container {
    width: 150px;
    height: 200px;
    margin: 0 auto;
    border-radius: 90px 90px 0 0;
    overflow: hidden;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .description {
    font-size: 14px;
    margin: 20px 0;
    color: #ccc;
  }
  
  .links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .link-button {
    border: 1px solid #ebce85;
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 30px;
    transition: 0.3s ease;
  }
  
  .link-button:hover {
    background-color: #ebce85;
    color: #0f2345;
  }
  