* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

:root {
    --text-color: #fff;
    --bg-color: url(./assets/bg-image.jpg);

    --surface-color: rgba(255,255,255, 0.05);
    --surface-color-hover: rgba(0,0,0, 0.02);

    --border-color: rgba(255,255,255,0.5);
    --icons-hover-color: rgba(255, 255, 255, 0.2);
}

body {
    height: 100%;
    background: var(--bg-color) no-repeat top center/cover;
}

body * {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
}

.container {
    width: 100%;
    max-width: 600px;

    margin: 60px auto 0px;
    padding: 0px 24px;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 25px;

    gap: 8px;
}

.profile img {
    width: 125px;
}

.profile p {
    font-weight: 500;
    line-height: 24px;
    font-size: 19px;
}

.profile span {
    font-weight: 300;
    line-height: 24px;
}

ul {
    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 20px;

    padding: 20px 0px;
}

ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 24px;

    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: background .3s, transform .2s;
}

ul li a:hover {
    background: var(--surface-color-hover);
    border: 1.5px solid #fff;
    transform: scale(1.01);
}

ion-icon {
    font-size: 28px;
}