body{
    margin:0;
    padding:10px;
    background:#e5e5e5;
    font-family:Arial,sans-serif;
}

.header-border {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-top: 5px;
}

.container{
    max-width:1200px;
    margin:auto;
}

.header{
    text-align:center;
	margin-top:5px;
    margin-bottom:15px;
}

.header a{
    text-decoration:none;
    color:#000;
}

.header h1{
    font-size:clamp(18px, 4vw, 20px);
    margin:0;
}

.photo{
    background:#fff;
    margin-bottom:20px;
    padding:15px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.photo img{
    width:100%;
    height:auto;
    display:block;
    border-radius:6px;
}

.title{
	text-align:center;
    margin-top:10px;
    font-size:clamp(12px, 2.5vw, 16px);
    // font-weight:bold;
    line-height:1.4;
}

.pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin:30px 0;
}

.pagination a{
    display:inline-block;
    padding:10px 14px;
    background:#333;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    font-size:14px;
}

.pagination a:hover{
    background:#555;
}

.current{
    padding:12px 18px;
    background:#999;
    color:#fff;
    border-radius:5px;
}

.footer{
    text-align:center;
    font-size:14px;
    line-height:1.7;
    margin-top:30px;
    padding-bottom:20px;
}

.footer a{
    color:#000;
}

/* Smartphones */

@media (max-width:768px){

    body{
        padding:8px;
    }
	
	.header-border {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	margin-top: 0px;
}

    .photo{
        padding:8px;
        margin-bottom:20px;
    }

    .pagination{
        gap:6px;
    }

    .pagination a,
    .current{
        padding:8px 10px;
        font-size:12px;
    }

    .footer{
        font-size:12px;
    }

}