解像度が低いと、右側がわずかに切り取られる大きな画像があります。解像度が低い場合は、画像をテキストに置き換えてもかまいません (日付を指定できるカウントダウンです)。display:none; を使用して、より低い解像度で画像を取り除くことができました。
HTML
<div id ="image"><div/>
理想的には、次のようなものが必要です。
<p>a date here....</p> <---this value hidden until the resolution hits the lower margins
CSS
@media (max-width: 500px) {
image:display.none;
}