@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:'Poppins',sans-serif;
    background:
    linear-gradient(rgba(255,255,255,.82),rgba(255,255,255,.82)),
    url('https://i.pinimg.com/originals/fd/30/f5/fd30f542141390edfe58f1cf5084d2c0.png');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    text-align:center;
    color:#85103d;
    padding:40px 20px;
}
h1{
    font-size:3rem;
    color:#85103d;
    margin-bottom:10px;
    text-shadow:0 0 15px rgba(255,105,180,.4);
    animation:floatTitle 2s ease-in-out infinite;
}
@keyframes floatTitle{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}
h2{
    color:#176d73;
    font-weight:400;
    margin-bottom:15px;
}
.box{
    max-width:700px;
    margin:30px auto;
    padding:30px;
    border-radius:25px;
    border:4px solid #176d73;
    background:rgba(255,255,255,.92);
    box-shadow:0 8px 25px rgba(255,182,193,.35);
    text-align:left;
}
.box h2{
    color:#85103d;
    text-align:center;
}
.box p{
    line-height:1.7;
    color:#4a2030;
}
.placeholder{
    font-style:italic;
    color:#a8728c;
}
table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
    border-radius:15px;
}
thead th{
    background:#85103d;
    color:white;
    padding:14px;
    font-size:1.1rem;
    font-weight:600;
}
tbody td{
    padding:14px;
    border-bottom:1px solid #ffd6e8;
    vertical-align:top;
}
tbody tr:last-child td{
    border-bottom:none;
}
.label{
    font-weight:600;
    color:#176d73;
    width:120px;
    text-transform:capitalize;
}
.home-wrap{
    margin:40px 0 10px;
}
.home-btn{
    display:inline-block;
    background:#85103d;
    color:white;
    text-decoration:none;
    border-radius:15px;
    padding:14px 32px;
    font-weight:600;
    transition:.3s;
}
.home-btn:hover{
    background:#176d73;
    transform:scale(1.03);
}
.polaroid{
    display:inline-block;
    background:white;
    padding:14px 14px 18px;
    border-radius:6px;
    box-shadow:0 8px 25px rgba(255,182,193,.45);
    margin:10px auto 35px;
    transform:rotate(-3deg);
    transition:.3s;
}
.polaroid:hover{
    transform:rotate(0deg) scale(1.03);
}
.polaroid img{
    width:260px;
    height:260px;
    object-fit:cover;
    border-radius:4px;
    display:block;
}
.polaroid p{
    margin-top:10px;
    font-weight:600;
    color:#85103d;
    font-size:.95rem;
}