body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: rgb(10,10,10);
    color: rgb(240,240,240);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
}

.container {
    width: 91%;
    max-width: 680px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner {
    width: 100%;
    max-width: 100%;
    height: 250px;
    background-image: url('banner.jpg');
    background-size: contain;
    background-repeat: no-repeat; 
    background-position: center;
    border-radius: 10px;
    margin-bottom: 10px;
}

.profile-info {
    text-align: center;
    margin-bottom: 30px;
  }

  .profile-info h1 {
    margin: 10px 0 5px;
  }

  .link-buttons {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .link-button {
    position: relative;
    background-color: #4f46e5;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    overflow: hidden;
    /*transition: background 0.3s ease;*/
    transition: transform 0.2s ease, background 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    display: block; 
  }

  .link-button:hover {
    background-color: #3730a3;
    transform: scale(1.03);
  }

  .link-button .left-icon,
  .link-button .right-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
  }

  .link-button .left-icon {
    left: 20px;
  }

  .link-button .right-icon {
    right: 20px;
  }

  .link-button .text {
    text-align: center;
    display: block;
  }
