body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: rgb(231, 1, 1);
    background: linear-gradient(90deg, rgba(231, 1, 1,1) 0%, rgba(148, 1, 1,1) 100%);
    position: relative;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
}

.box {
    text-align: center;
    background-color: rgba(135, 50, 50);
    padding: 20px;
    border-radius: 10px;
    width: 50vw;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
    filter: blur(10px); 
    transition: filter 1s ease; 
}

.box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.box p {
    margin-top: 10px;
    font-size: 16px;
    color: #fff;
}

.small-images {
    margin-top: 10px;
}

.small-images img {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    cursor: pointer;
}

.box hr {
    margin: 20px 0;
    border: none;
    height: 1px;
    background-color: #ddd;
}

.social-icons a {
    margin: 0 10px;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ccc;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    z-index: 2;
    transition: opacity 1s ease;
}
