:root {
    --linkedin-color: #0077b5;
    --github-color: #333;
    --instagram-color: #e1306c;
    --youtube-color: #ff0000;
    --steam-color: #000000;
    --bg-color: #ffffff;
    --link-color: #f5f5f5;
    --title-color: #000000;
    --link-text-color: #000000;
    --darkmode-button-color: #000000;
    --color-text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-image: url("https://assets.zephycube.com/website/aecyrexus/background.gif");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 10px;
    transition: all 0.2s;
}

body > .container {
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    max-width: 500px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 10px 12px 20px rgba(248, 202, 202, 0.30), 0 10px 26px 0 rgba(248, 202, 202, 0.30);
}

.image {
    background-size: cover;
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

.image::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    backdrop-filter: blur(3px);
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.image > .avatar {
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid var(--bg-color);
    width: 128px;
    height: 128px;
}

.name {
    margin-top: 70px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--title-color);
}

.bio {
    margin-top: 12px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--title-color);
    background-color: var(--link-color);
    padding: 10px;
    border-radius: 10px;
    margin-left: 20px;
    margin-right: 20px;
}

.links {
    padding: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    
}

.link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    border-radius: 5px;
    background-color: var(--link-color);
    box-shadow: 0 4px 6px 2px rgba(248, 202, 202, 0.30), 0 5px 12px 0 rgba(248, 202, 202, 0.30);

}

.link > h1 {
    font-size: 1.5rem;
}

.link > p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--link-text-color);
}

.link > p > a {
    text-decoration: none;
    transition: transform .2s;
}

.link > p > a:hover {
    transform: scale(1.2);
    display: inline-block;
}

.link > p > a > img {
    width: 50px;
    height: 50px;
}

h1 {
    color: var(--color-text);
}
h1 > center {
    font-size: 1rem;
    position: relative;
}

body {
    --linkedin-color: #33a5e5;
    --github-color: #b7b7b7;
    --instagram-color: #e1306c;
    --youtube-color: #ff0000;
    --bg-color: #000000;
    --link-color: #1f1f1f;
    --title-color: #f5f5f5;
    --link-text-color: #f5f5f5;
    --darkmode-button-color: #fff263;
}
