@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #222;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.target-shape {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ff0055, #ff9900);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(255, 0, 85, 0.5);
    cursor: pointer;
    transition: transform 0.2s;
}

.target-shape:hover {
    transform: scale(1.1);
}

#fragments {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.frag {
    position: absolute;
    background: linear-gradient(135deg, #ff0055, #ff9900);
    /* We will use clip-path to make triangles */
}

.tip {
    position: absolute;
    bottom: 30px;
    color: #fff;
    letter-spacing: 5px;
    opacity: 0.5;
    pointer-events: none;
}
