Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */
body.page-Main_Page {
background: url('https://predictive-pulse.com/images/5ean444_winter_cabin_forest_snow_night_sky_stars_peaceful_reali_fc7e7992-0c1e-4564-bf78-2930ff9dc2f9.png') no-repeat center center fixed;
background-size: cover;
}
.main-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
margin: 20px auto;
max-width: 1200px;
}
.grid-item {
text-align: center;
background: #2c2c2c;
border-radius: 8px;
padding: 10px;
transition: transform 0.3s ease;
}
.grid-item:hover {
transform: scale(1.05);
}
.grid-item img {
max-width: 100%;
height: auto;
border-radius: 8px;
}
.grid-item span {
display: block;
margin-top: 10px;
color: #fff;
font-size: 1.2em;
font-weight: bold;
}
#footer-places {
display: none; /* Hides the footer links like Privacy Policy, About, Disclaimers */
}