body {
    background-color: #d9d9d9;
    overflow: hidden;
    font-family: "Roboto Mono";
    color: #333;
    margin: 0;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    position: absolute;
}

#frame-cross {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: #fd5225;
    clip-path: polygon(0% 80%, 85% 0%, 100% 0%, 100% 20%, 20% 100%, 0% 100%);
}

.profile-img {
    position: absolute;
    height: 75vh;
    left: 32vw;
    top: 8vh;
    filter: drop-shadow(15px 5px 5px rgba(0, 0, 0, 0.2));
}

#frame-cross-cover {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: #d9d9d9;
    clip-path: polygon(20% 100%, 100% 20%, 100% 100%);
}

#name-container {
    position: absolute;
    left: 2.5vw;
    top: 22vh;
}

#fullname {
    display: flex;
    flex-direction: row;
}

.name-with-ipa {
    display: flex;
    flex-direction: column;
    margin-right: 1.6vw;
}

.name-ipa {
    font-weight: bold;
    font-size: 0.8vw;
    margin-left: 0.2vw;
}

.name {
    font-weight: bold;
    font-size: 4.5vw;
    margin-top: -1vh;
}

#name-arrow {
    width: 1vw;
    height: 1vw;
    margin-top: 2vh;
    margin-left: -1vw;
    clip-path: polygon(0% 0%, 30% 0%, 30% 50%, 80% 0%, 100% 0%, 100% 20%, 50% 70%, 100% 70%, 100% 100%, 0% 100%);
    background-color: #333;
}

#name-sub {
    display: block;
    font-weight: bold;
    font-size: 0.8vw;
    color: #747579;
}

#desc-container {
    position: absolute;
    right: 3vw;
    bottom: 6vh;
}

#desc {
    margin-left: 0.5vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}

#desc span:nth-child(1) {
    width: 37vw;
}

#desc span:nth-child(2) {
    width: 42vw;
}

#desc span:nth-child(3) {
    width: 38vw;
}

.desc-line {
    width: 100%;
    font-weight: bold;
    font-size: 1.1vw;
    text-align: right;
    margin-left: auto;
    border-right: #333 4px solid;
    padding-right: 15px;
}

#social-container {
    margin-left: 7.5vw;
    margin-right: -5px;
    margin-top: 3vh;
    display: flex;
    flex-direction: row;
}

.button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #333;
    font-size: 0.85vw;
    font-weight: bold;
    border: 2px solid #333;
    border-radius: 8px;
    box-shadow: 5px 5px 0 0 #333;
    cursor: pointer;
    margin: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, background-image 0.3s ease;
}

.button-icon {
    width: 24px;
    height: 24px;
    filter: invert(13%) sepia(61%) saturate(0%) hue-rotate(311deg) brightness(96%) contrast(83%);
    transition: filter 0.3s ease;
}

.button-text {
    flex-grow: 1;
    text-decoration: none;
}

#linkedin-button:hover {
    background-color: #0a66c2;
    color: #ffffff;
}

#linkedin-button:hover img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

#github-button:hover {
    background-color: #1f2328;
    color: #ffffff;
}

#github-button:hover img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

#steam-button:hover {
    background-image: linear-gradient(45deg, #184a80, #0383af);
    color: #ffffff;
}

#steam-button:hover img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

#flickr-button:hover {
    background-image: linear-gradient(to right, #236acf, #f60080);
    color: #ffffff;
}

#flickr-button:hover img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}