body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
   background-image:url(SS\ fashion\ 1.png);
    background-size: cover;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px 5px;
    text-align: center;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    
    margin-bottom: 20px; /* Added margin-bottom to separate containers */
    
}

.profile-pic img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid white;
}

h1 {
    margin: 10px 0;
    font-size: 24px;
    color: white;
}

.title, .handle {
    margin: 5px 0;
    color: white;
}

.buttons {
    margin: 20px 0;
}

.btn {
    display: block;
    width: 50%;
    padding: 10px;
    margin: 30px 0;
    margin-left: 25%;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    text-align: center;
    padding-left: 20px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
}

.btn i {
    margin-right: 10px;
}

.btn:hover {
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    transform: scale(1.05);
}



