@import url(/global.css); img { pointer-events: none; user-select: none; } body { color: #ffffff; padding: 0; display: flex; flex-direction: column; align-items: center; text-align: center; background-color: #2a2a2a; min-height: 100vh; overflow-x: hidden; } .languages { margin-bottom: 20px; } strong { font-weight: 900; color: #dddddd; } .info { margin-top: 50px; } #profile-picture { width: 150px; height: 150px; border-radius: 50%; border: 3px solid #80848e; } .name { font-size: 24px; margin-top: 10px; } .time { font-size: 18px; margin-bottom: 10px; color: #cccccc; } .age { font-size: 18px; margin-top: 5px; color: #cccccc; } .hobbies { margin-top: 10px; font-size: 16px; color: #cccccc; } .cards { margin-top: 30px !important; background-color: #252525; padding: 20px; border-radius: 10px; width: 600px !important; text-align: left; } footer { margin-bottom: 50px !important; } #status { font-weight: bold; margin: 10px 0 15px 10px; color: #cccccc; } .activity { display: flex; align-items: center; justify-content: center; text-align: left; width: 100%; gap: 2px; } #activity-name { flex-grow: 1; text-align: left; color: #cccccc; } #activity-image { display: block; height: 36px; width: 36px; } .languages, .contact { margin-top: 30px; width: 100%; } .language-item { display: block; background-color: #3b3b3b; padding: 10px 15px; border-radius: 8px; transition: background-color 0.3s, transform 0.2s; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); margin: 10px; } .language-item:hover { background-color: #4d4d4d; transform: translateY(-5px); } .language-item:hover span, .language-item:hover .language-name { color: #f0f0f0; } .name-percent-container { display: inline-flex; align-items: center; gap: 10px; width: 100%; } div[class="name-percent-container"] > img.image { width: 30px; height: 20px; border-radius: 2px; } .language-item .language-name { cursor: default; font-size: 18px; color: #aaaaaa; display: inline-block; margin-right: 10px; } .language-item .percent { font-size: 16px; color: #aaaaaa; font-weight: bold; } .percentage-bar { display: block; width: 100%; height: 8px; background-color: #444; margin-top: 10px; border-radius: 5px; position: relative; } .percentage-bar .bar-after { position: relative; width: 100%; height: 100%; background-color: #00aa00; border-radius: 5px; background: linear-gradient(to right, #005500 0%, #009900 50%, #005500 100%); background-size: 200% 100%; animation: shimmer 3s infinite linear; } .language-item:hover .percentage-bar .bar-after { background: linear-gradient(to right, #008800 0%, #00ff00 50%, #008800 100%); animation: shimmer 3s infinite linear; background-size: 200% 100%; } .tooltip { display: flex; justify-content: center; position: relative; } .tooltip::after { content: attr(data-tooltip); position: absolute; left: 50%; transform: translateX(-50%); bottom: 125%; background-color: #2a2a2a; border: 2px solid rgba(150, 150, 150, 0.1); color: #fff; padding: 5px 10px; border-radius: 5px; font-size: 14px; white-space: nowrap; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; cursor: default; } a[class="skill-item tooltip"]::after { content: attr(data-tooltip); position: absolute; left: 50%; transform: translateX(-50%); bottom: 110%; background-color: #2a2a2a; border: 2px solid rgba(150, 150, 150, 0.1); color: #fff; padding: 5px 10px; border-radius: 5px; font-size: 14px; white-space: nowrap; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; cursor: default; } .tooltip:hover::after { opacity: 1; visibility: visible; } @keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } } #skills-div:not(#skills-div > h2) { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; justify-content: center; margin-top: 20px; width: 100%; max-width: 600px; } .skill-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; justify-content: center; background-color: #3b3b3b; padding: 15px; border-radius: 8px; transition: background-color 0.3s, transform 0.2s; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); text-align: center; margin: 0 20px; } .contact-item { text-decoration: none; display: flex; flex-direction: row; align-items: center; justify-content: center; background-color: #3b3b3b; padding: 15px; border-radius: 8px; transition: background-color 0.3s, transform 0.2s; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); text-align: center; margin: 10px; } .skill-item:hover { background-color: #4d4d4d; transform: translateY(-5px); } .skill-item:hover .skill-name { color: #ffffff; } .skill-item > .image { margin-bottom: 10px; } .image { height: 50px; border-radius: 5px; } .skill-name { font-size: 16px; color: #aaaaaa; } .contact-name { font-size: 16px; color: #efefef; margin-left: 10px; } .card-header { color: white; text-align: left; width: 100%; grid-column: span 2; } .contact-item:hover { transform: translateY(-5px); } .github-contact { background-color: #040404; } .github-contact:hover { background-color: #080808; } .instagram-contact { background-color: #c13584; } .instagram-contact:hover { background-color: #d44190; } .twitter-contact { background-color: #1da1f2; } .twitter-contact:hover { background-color: #33b2ff; } .youtube-contact { background-color: #e03535; } .youtube-contact:hover { background-color: #ff4444; } @media (max-width: 768px) { .language-item { width: 150px; margin: 10px; } .language-item img.image { height: 1px; width: 25px; height: 17px; } .language-item .language-name { font-size: 16px; } .language-item .percent { font-size: 14px; } } @media (max-width: 600px) { .cards { width: 90% !important; padding: 15px; } .name { font-size: 20px; } .time, .age, .hobbies { font-size: 16px; } #profile-picture { width: 120px; height: 120px; } #skills-div:not(#skills-div > h2) { grid-template-columns: repeat(1, minmax(0, 1fr)); } .language-item { width: 100%; } .skill-item { margin: 0 10px; padding: 10px; } .contact-item { padding: 10px; } } @media (max-width: 400px) { .name { font-size: 18px; } .time, .age, .hobbies { font-size: 14px; } #profile-picture { width: 100px; height: 100px; } .cards { width: 100% !important; padding: 10px; } .skill-item { padding: 8px; } .contact-item { padding: 8px; } } div[class="stats cards"] { text-align: center; } div[class="stats cards"] > h2 { text-align: left; }