﻿.home-container {
    gap: 20px
}

.home-tile {
    border: 1px solid #008200;
    border-radius: 10px;
    background-color: #111;
    color: silver;
    min-height: 100px;
    min-width: 49%;
    max-width: 49%;
    overflow: hidden;
}

.home-tile-title {
    width: 100%;
    height: 30px;
    color: #f8f8ff;
    background-color: #00b200;
    border-width: 1px 1px 1px 1px;
    border-color: #008200 #008200 #00b200 #008200;
    border-style: solid solid solid solid;
    text-align: center;
    border-radius: 10px 10px 0px 0px;
    font-weight: bold;
}

.home-tile-content {
    overflow: hidden;
}

    .home-tile-content img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
