.bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: Bebas Neue, sans-serif;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

.profile-pic {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #a00000;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}



.links a {
    display: block;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.links a:hover {
    background-color: #ce0000;
}

.link-button {
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #e0e0e0;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
    position: relative;
    /* Add this */
}

.link-button img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 12px;
    position: absolute;
    /* Position icon absolutely */
    left: 1rem;
    /* Align to left padding */
}

.link-text {
    font-size: 1.5rem;
    width: 100%;
    /* Take full width */
    line-height: 1.9;
    text-align: center;
    /* Center the text */
    text-transform: uppercase;
    /* Makes text uppercase like in your goal image */
    font-weight: bold;
    /* Makes text bold like in your goal image */
}