body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
}


.container {

    text-align: center;
    padding: 120px;
}


#user-name {
    font-size: 8rem;
    font-weight: 800;
    margin-bottom: 200px;
    color: rgb(77, 33, 88);
    position: relative;
    text-shadow: 0 0 5px #5f1a4a, 0 0 20px #000, 0 0 30px;
}

.buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center; 
}

.button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button i {
    margin-right: 10px; 
    font-size: 1.3rem;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.steam {
    background-color: #171a21;
    color: white;
}

.discord {
    background-color: #5865f2;
    color: white;
}

#logo-Aimless {
    width: 150px;
    height: 150px;
    margin: 0 10px;
    border-radius: 50%;
    padding: 1px;
    box-shadow: 0 0 20px #3d1837, 0 0 20px #be2dbe, 0 0 10px;
}
