.body {
    width: 650px;
    height: 500px;
    perspective: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.watermelon {
    width: 510px;
    height: 250px;
    overflow: hidden;
    position: relative;
    transform: rotateY(-15deg) rotateZ(20deg);
}
.watermelon::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: 0px;
    right: 0px;
    border-radius: 300px 500px 330px 500px;
    background-color: #1a360b;
}
.watermelon::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: 10px;
    left: 0;
    border-bottom: 20px solid #3d6e23;
    background-color: rgb(153, 31, 31);
    border-radius: 50%;
}

.watermelon span {
    position: absolute;
    background-color: #000;
    width: 20px;
    height: 20px;
    z-index: 2;
    border-radius: 5px 5px 20px 20px;
}
.watermelon span:nth-child(1) {
    left: 10%;
    top: 10%;
}
.watermelon span:nth-child(2) {
    left: 30%;
    top: 20%;
}
.watermelon span:nth-child(3) {
    left: 50%;
    top: 40%;
}
.watermelon span:nth-child(4) {
    left: 20%;
    top: 45%;
}
.watermelon span:nth-child(5) {
    left: 60%;
    top: 15%;
}
.watermelon span:nth-child(6) {
    left: 75%;
    top: 35%;
}
.watermelon span:nth-child(7) {
    left: 85%;
    top: 15%;
}
.watermelon span:nth-child(8) {
    left: 35%;
    top: 65%;
}
.watermelon span:nth-child(9) {
    left: 65%;
    top: 60%;
}
.blue {
    color: blue;
}
.title {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 36px;
    margin-left: 150px;
    background-color: rgb(192, 191, 191);
    width: fit-content;
}
.yellow {
    color: yellow;
}
.ref {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: azure;
    padding: 15px 15px;
}
.btn{
    margin-left: 150px;
    background-color: rgb(0, 162, 255);
    height: 40px;
    border-radius: 8px;

    
}
