* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
    color: #333;
}

.im1 {
    position: absolute; 
    width: 120px;
    left:30px;
    top:30px
}

.im2 {
    position: absolute; 
    width: 120px;
    left:270px;
    top:30px
}

.im3 {
    position: absolute; 
    width: 200px;
    left:200px;
    bottom:50px;
}

.im4 {
    position: absolute; 
    width: 120px;
    left:190px;
    top:220px
}

.im5 {
    position: absolute; 
    width: 120px;
    left:10px;
    bottom:30px;
}

.im6 {
    position: absolute; 
    width: 120px;
    right:280px;
    bottom:20px;
}

.im7 {
    position: absolute; 
    width: 120px;
    right:190px;
    bottom:240px;
}

.im8 {
    position: absolute; 
    width: 120px;
    left:50px;
    bottom:210px;
}

.im9 {
    position: absolute; 
    width: 120px;
    right:50px;
    top: 120px;
}

.im10 {
    position: absolute; 
    width: 120px;
    right:270px;
    top:20px
}

.im11 {
    position: absolute; 
    width: 120px;
    right:50px;
    bottom:70px;
}


.screen {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.screen:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

h1 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #ff4b5c;
}

.subtitle {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.desc {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

#btn {
    background: linear-gradient(90deg, #ff758c, #ff7eb3);
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    cursor: pointer;
    transition: 0.3s;
}

#btn:hover {
    background: linear-gradient(90deg, #ff7eb3, #ff758c);
    transform: scale(1.05);
}

#btn .aa {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    display: inline-block;
}