* {
    padding: 0;
    margin: 0;
}

html {
    background-color: #413ba5;
    color: white;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid {
    display: flex;
    gap: 20px;

    width: 60%;
}

.grid-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    border: 1px solid rgb(230, 213, 213);
}

.grid-item:hover {
    transform: scale(1.03);
    cursor: pointer;
}

.item-image {
    width: 100%;
    height: 250px;
    object-fit: fill;
}

.item-text {
    position: absolute;

    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}