#home-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    justify-content: center;
    border-radius: 10px;
    background-color: rgba(255, 228, 225, 0.1);
    background-size: cover;
    box-shadow: 0px 0px 8px rgba(255, 228, 225, 0.5);
}

#home-avatar {
    text-align: center;
}

#home-avatar img {
    width: 140px;
    height: 140px;
    margin-right: 20px;
    border-radius: 100%;
    vertical-align: middle;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid #444;
    outline: 3px solid #241A43;
}

#home-avatar div {
    vertical-align: middle;
    display: inline-block;
    text-align: left;
}

.title-home {
    color: white;
    font-size: 40pt;
}

.label-quote {
    color: white;
    font-size: 10pt;
    font-style: italic;
}

#buttons {
    width: auto;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.button {
    width: 65px;
    height: 65px;
    display: inline-block;
    margin: 4px;
    transition-duration: 400ms;
}

.button:hover {
    transform: scale(1.1) rotateZ(10deg);
}

.button img {
    width: 100%;
    height: 100%;
    --webkit-filter: invert(1);
}