* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo img {
    width: 120px;
    margin: 20px auto;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

.shops {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 50px;

}

.shop {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.shop:hover {
    transform: scale(1.03);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.shop img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 28px;
}

.shop span {
    position: absolute;
    color: white;
    font-weight: bold;
    font-size: 1.4em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .shop img {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .shop img {
        height: 80px;

    }

    h2 {
        font-size: 1.2em;
        margin-top: 30px;
    }

    .logo img {
        width: 90px;
    }
}
