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

.tile-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
}

.tile {
    width: 100vw;
    height: 100vh;
    background-image: url('../../img/hosted/tile_1.png');
    background-size: cover;
    position: absolute;
}

.hover-card {
    width: 600px;
    height: 300px;
    background-color: #fff;
    padding: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    z-index: 100;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-around;
}
