     html, body {
    width: 50%;
}



html {
       overflow-x: hidden;
	    display: table;
    margin: auto;
     }
     body {
       font-family: 'Poppins', sans-serif;
       font-size: 13pt;
       font-color: #ffffff;
       background-color: #101010;
		display: table-cell;
    vertical-align: middle;
     }
     .p1 {
       font-family: "Times New Roman", Times, serif;
       color: white;
     }
     .container {
       width: 100%;
       padding-right: 15px;
       padding-left: 15px;
       margin-right: auto;
       margin-left: auto;
     }
     .image-container {
       display: block;
       text-align: center;
       margin: auto;
       max-width: 60%;
     }
     .links-container {
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       gap: 20px;
     }
     .line {
       width: 100%;
       margin: auto;
       padding: 10px;
       clear: both;
       display: table;
       table-layout: fixed;
       border-spacing: 1px;
       vertical-align: middle;
     }
     .name {
		 text-align: right;
       background-color: rgba(255, 255, 255, 0);
       border-radius: 10px;
       color: rgba(255, 255, 255, 0.7);
       padding: 15px;
       display: table-cell;
     }
     .data {
       width: 65%;
       border: 0px;
       text-align: center;
       background-color: rgba(255, 255, 255, 0.15);
       border-radius: 10px;
       color: white;
       padding: 15px;
       display: table-cell;
		 
     }
     .adres {
       margin: 1px;
     }
     .button-copy {
       margin-left: 5px;
       display: table-cell;
       border: 0px;
       border-radius: 10px;
       color: rgba(255, 255, 255, 0.7);
       background-color: #101010;
       padding: 15px 20px 15px 20px;
       text-align: center;
       text-decoration: none;
       font-size: 18px;
       transition: color 100ms;
       vertical-align: baseline;
       user-select: none;
       -webkit-user-select: none;
       touch-action: manipulation;
       cursor: pointer;
       display: table-cell;
     }
     .button-copy:hover {
       background-color: #e91c28;
       color: rgba(255, 255, 255, 1);
     }
     .button-copy:active {
       background-color: #ffffff;
       color: #101010;
     }
     .space {
       margin-left: 5px
     }
     .tooltip {
       position: relative;
       display: inline-block;
     }
     .tooltip .tooltiptext {
       visibility: hidden;
       width: 140px;
       background-color: #555;
       color: #fff;
       text-align: center;
       border-radius: 6px;
       padding: 5px;
       position: absolute;
       z-index: 1;
       top: -5px;
       left: 110%;
       opacity: 0;
       transition: opacity 0.3s;
     }
     .tooltip .tooltiptext::after {
       content: " ";
       position: absolute;
       top: 50%;
       right: 100%;
       margin-top: -5px;
       border-width: 5px;
       border-style: solid;
       border-color: transparent #555 transparent transparent;
     }
     .tooltip:hover .tooltiptext {
       visibility: visible;
       opacity: 1;
     }
     @media all and (min-width:500px) and (max-width: 1024px) {
       .data {
         width: 55%;
       }
		      html, body {
    width: 100%;
}
       body {
         font-size: 16pt;
       }
       .button-copy {
         font-size: 21px;
       }
     }
@media all and (min-width:0px) and (max-width: 499px) {
	    .data {
         width: 50%;
       }
			      html, body {
    width: 100%;
					  
}
	body {
         font-size: 16pt;
       }
}