*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      background-color: #dbdbdb;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .cover {
      position: fixed;
      inset: 0;
      z-index: -1;
      background-image: url('etoche.jpg');
      background-size: cover;
      background-position: center;
    }

    .page {
      width: 100%;
      max-width: 480px;
      padding: 30px 20px 90px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }
 
    .avatar-wrap {
      padding-top: 30px;
      padding-bottom: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
 
    .avatar {
      width: 240px;
      height: 240px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
    }
 
    .username {
      font-size: 16px;
      color: #ffffff;
      font-weight: 400;
      padding-top: 20px;
      padding-bottom: 30px;
      text-align: center;
    }
 
    .links {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding-top: 15px;
    }
 
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      width: 100%;
      max-width: 360px;
      padding: 14px 24px;
      color: #000000;
      background-color: #ffffff;
      border: none;
      border-radius: 30px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, transform 0.15s ease-in-out;
      font-family: inherit;
    }
 
    .btn:hover {
      background-color: #f0f0f0;
      transform: scale(1.02);
    }
 
    .btn:active {
      transform: scale(0.98);
    }
 
    .btn-descr {
      font-size: 12px;
      font-weight: 400;
      opacity: 0.5;
      margin-top: 2px;
    }