body {
    font-family: Arial, sans-serif;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-picture {
    width: 50%;
    aspect-ratio: 1/1;
    min-width: 320px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    border: 3px solid white;
    box-shadow: 0px 12px 17px 6px rgba(0, 0, 0, 0.5);
}

.profile-picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title-text {
    color: #fff;
    font-family: Museo-700;
    font-size: 48pt;
    margin-bottom: 20px;
    text-align: center;
}

.title-text span {
    text-shadow: 0px 5px 8px black;
}

.social-media-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.social-media-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    font-size: 24pt;
}

.social-media-icons a:hover.stack-overflow {
    background-color: #F47F24;
}

.social-media-icons a:hover.itch {
    background-color: #fa5c5c;
}

.social-media-icons a:hover.linkedin {
    background-color: #0077b5;
}

.social-media-icons a:hover.lastfm {
    background-color: #D51007;
}

.social-media-icons a:hover.instagram  {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-media-icons a:hover {
    background-color: #444;
}
