<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Full-Screen Puzzle Layout Hình Giọt Nước</title>
<style>
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
font-family: Arial, sans-serif;
}
.water-drop {
width: 100vw;
height: 100vh;
background: url('https://w.ladicdn.com/s1600x1600/60988adb4f31f60012f43f81/thottrongonghientb3255-20240819232330-wyerj.png') no-repeat center center;
background-size: cover;
clip-path: url(#unique-water-drop);
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(3, 1fr);
gap: 10px;
padding: 5vh 5vw;
box-sizing: border-box;
position: relative;
}
.puzzle-piece {
background-color: rgba(255, 255, 255, 0.45); /* Giảm độ trong suốt */
color: #000000;
display: flex;
justify-content: center;
align-items: center;
font-size: 3vw;
font-weight: bold;
border: 2px solid #000000;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
.puzzle-piece {
font-size: 4vw;
}
}
@media (max-width: 480px) {
.puzzle-piece {
font-size: 5vw;
}
}
</style>
</head>
<body>
<div class="water-drop">
<div class="puzzle-piece">C</div>
<div class="puzzle-piece">B</div>
<div class="puzzle-piece">Thớt Gỗ</div>
<div class="puzzle-piece">Nghiến</div>
<div class="puzzle-piece">Mua</div>
<div class="puzzle-piece">
<a href="https://shorten.asia/cFQSjC5R"> Ở Đây </a>
</div>
</div>
<svg width="0" height="0">
<clipPath id="unique-water-drop" clipPathUnits="objectBoundingBox">
<path d="M 0.5,0 C 0.4,0.2 0.2,0.4 0.1,0.6 C 0,0.8 0.15,1 0.5,1 C 0.85,1 1,0.8 0.9,0.6 C 0.8,0.4 0.6,0.2 0.5,0 Z" />
</clipPath>
</svg>
</body>
</html>