@font-face {
    font-family: 'Space Age';
    src: url('fonts/SpaceAge.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid #555;
    object-fit: cover;
}

.brand-name {
    font-family: 'Space Age', sans-serif;
    font-size: 2.4rem;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0.5rem 0 0.3rem;
    text-transform: lowercase;
}

.description {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 320px;
}
.badges{
    margin-bottom: 2rem;
    
}
.link-container {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link-button {
    width: 100%;
    padding: 1rem;
    margin: 0.5rem 0;
    text-align: center;
    background-color: #1f1f1f;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid #333;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-sizing: border-box;
}


.link-button:hover {
    background-color: #333;
    transform: scale(1.03);
}

.footer-note {
    font-size: 0.8rem;
    color: #555;
    margin-top: 2rem;
    text-align: center;
}