html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    background-image: url('media/background.png');
    background-repeat: repeat;
    font-family: Arial, sans-serif;
    min-height: 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    min-width: 400px;
}

.header {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 20px 40px;
    text-align: center;
    margin: 20px 40px;
    border-radius: 8px;
}

.header h1 {
    margin: 0;
    color: #333;
    font-size: 32px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
    justify-content: center;
    flex: 1;
    overflow: scroll;
}

.tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 200px;
    height: 200px;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tile img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.tile-text {
    text-align: center;
    color: #333;
    font-size: 20px;
    font-style: bold;
}

.footer {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 20px 40px;
    text-align: center;
    margin: 20px 40px;
    border-radius: 8px;
}

.footer p {
    margin: 0;
    color: #333;
    font-size: 14px;
}

.footer a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}
