/*
Theme Name: Simple Image Links
Theme URI: https://www.natsoft.nl
Description: Een simpel theme om afbeeldingen met links onder elkaar te plaatsen
Version: 1.0
Author: Nathan
Author URI: https://www.natsoft.nl
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simple-image-links
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.image-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-link-item {
    width: 100%;
    transition: transform 0.3s ease;
}

.image-link-item:hover {
    transform: scale(1.02);
}

.image-link-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}
