body {
    background-color: #FFFFFF; 
    display: grid;
    align-items: center;
    justify-content: center;
    height: 96vh;
}
img {
    width: auto; 
    height: auto; 
    max-width: 305px; 
    max-height: 386px;
}
i {
    font-size: 48px;
    margin: 16px;
}
div {
    font-family: 'Courier New', monospace;
    font-size: 36px;
    font-weight: 100;
    text-align: center;
}
a {
    color: #000000;
}

#gpg-key {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    text-align: left;
}

i.hover-btn {
    cursor: pointer;
    transition: transform 0.2s ease;
}

i.hover-btn:hover {
    transform: scale(0.9); /* Simple effect to make the button feel clickable */
}