body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Segoe UI","Segoe",Tahoma,Helvetica,Arial,sans-serif;
    transition: 0.2s;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn {
    cursor: pointer;
    text-decoration: none !important;
    text-align: center;
    padding: 10px 10px;
    border-radius: 10px;
    border: white solid 2px;
    background-color: white;
    width: 180px;
    transition: 0.2s;
}

.btn:hover {
    transition: 0.2s;
}

.btn-copy {
    padding-left: 15px;
    transition: 0.2s;
}

.output-container {
    margin: 20px;
    border-radius: 10px;
    border: white solid 2px;
    background-color: white;
    padding: 5px 10px;
    width: 180px;
}

.label-container {
    display: flex;
    flex-direction: row;
    align-items: baseline;
}

.label {
    margin-right: 10px;
    font-weight: bold;
}

.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;
    bottom: -5px;
    left: 400%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 40%;
    left: -10px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #555 transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s;
}