@charset "UTF-8";

/* Skills/tools icon */

.square-icon {
    height: 64px;
    width: auto;
    transition: .5s ease;
}

.hover-container {
    position: relative;
}

.hover-container:hover .square-icon {
    opacity: 0.25;
}

.hover-container:hover .hover-middle {
    opacity: 1;
}

.hover-middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.hover-text {
    /*background-color: #c3c3c3;*/
    color: black;
    font-size: 16px;
    text-align: center;
    font-family: Roboto, Muli, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    /*font-weight: lighter;*/
    /*font-variant-caps: ;*/
    padding: 6px 6px;
}


/* Custom language buttons */

.lg_button {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
    width: 2.8em;
    height: 2.8em;
    margin-top: 1em;
}

.lg_button:not(:last-child) {
    margin-right: 0.5em;
}

.lg_button:hover:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.3);
}

/* Only for japanese - not translated yet */
.lg_button:disabled {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(100, 100, 100, 0.5);
}

.creation_image {
    padding: 1em;
    max-width: 40%;
    height: auto;
}