body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: Arial, sans-serif;
}

.login-container {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.login-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-container input {
    margin: 10px;
    padding: 10px;
    width: 200px;
}

.login-container button {
    padding: 10px 20px;
}

.tile-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.tile {
    width: 22%;
    margin: 1%;
    text-decoration: none;
    color: black;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.2s;
}

.tile:hover {
    transform: scale(1.05);
}

.tile-content {
    text-align: center;
    background-color: #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tile-title {
    flex: 1;
    padding: 10px;
    font-size: 1.2em;
}

.tile img {
    flex: 5;
    width: 100%;
    height: auto;
}
