body {
    background-color: #1c162b;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.social-buttons {
    margin-top: 20px;
    margin-right: 20px;
    display: flex;
    gap: 10px;
}

.social-buttons a {
    display: block;
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* Invisible by default */
    opacity: 0;
    transition: opacity 1.2s ease;
}

.social-buttons a:hover {
    /* Visible on hover */
    opacity: 1;
    cursor: default;
}

.linkedin {
    background-image: url('../img/li-icon.svg');
}

.github {
    background-image: url('../img/gh-icon.svg');
}

.stackoverflow {
    background-image: url('../img/so-icon.svg');
}