main {
    display: flex;
    border: solid black 1px;
    justify-content: center;
    margin: 10px 10px;
    flex-direction: row;
}

.shop,
.clicker,
.right {
    width: 33.33%;
    border: solid black 0.5px;
}

.title {
    text-align: center;
    font-size: 24px;
    text-decoration: underline;
    margin: 10px 0px;
}

.shop-main {
    margin-top: 50px;
}

.shop-title {
    font-size: 20px;
    text-decoration: underline;
    margin-left: 20px;
}

.shop-details {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin: 30px 15px;
}

.clicker-main {
    margin-top: 50px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.clicker-image-container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clicker-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-bottom: 50px;
}

.clicker-img img {
    width: 300px;
    height: auto;
    max-height: 100%;
    transition: transform 0.5s;
}

.clicker-img img:hover {
    transform: scale(1.1);
}