header {
    display: flex;
    color: white;
    background-color: black;
    text-align: center;
    justify-content: space-between;
    font-family: "Plaster", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    padding: 0 20px;
    height: 70px;
}

.header-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 1;
}

body {
    margin: 0px;
}

.section-title {
    color: white;
    text-align: center;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
    font-family: "Plaster", system-ui;
    font-size: 40px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    margin: 0;
}

.icon-item {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: row-reverse;
    cursor: pointer;
    color: white;
    padding: 0px;
    width: 40px;
    height: 60px;
}

.drop-menu {
    list-style: none;
    max-height: 0;
    width: 100%;
    overflow: hidden;
    padding: 0px 0;
    margin: 0;
    font-size: 20px;
    font-family: "Inika";
    text-align: center;
    -webkit-text-stroke-width: 1px;
    transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
    display: flex;
    flex-direction: row;
}
.drop-menu li{
    width: 150px;
    margin: 10px auto;
    padding: 15px 0;
    outline-style: solid;
    border-top: 2px solid #333;
    color: white;
    background-color: black;
    border-radius: 10px;
    border: none;
}

.opened {
    display: flex;
    text-align: center;
    max-height: 300px;
    opacity: 1;
    background-image: url(https://i.kym-cdn.com/photos/images/original/001/373/079/7c3.jpg);
    background-color: #FFFFFF90;
    background-blend-mode: overlay;
}
.opened {
    max-height: 300px;
    opacity: 1;
    display: flex;
    animation: myAnimation 0.60s ease forwards;
}

.product-item {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.product {
    display: flex;
    padding: 7px 7px 9px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
    margin: 20px;
}

.product-image {
    max-width: 500px;
    padding: 7px 15px 9px 15px;
    background-color: white;
    border-radius: 15px;
}

.image-size {
    width: 100%;
}

.gamera-product {
    display: flex;
    padding: 7px 7px 9px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
    margin: 10px;
}

.kingkong-product {
    display: flex;
    padding: 7px 7px 9px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
    margin: 10px;
}

.description {
    padding-top: 14px;
    padding-bottom: 14px;
    left: 214px;
    text-align: center;
    color: white;
    font-size: 20px;
    font-family: "Inika";
    font-weight: 400;
    word-wrap: break-word;
}

.product-descript-1 {
    top: 695px;
}

.product-descript-2 {
    top: 453px;
}

.product-descript-3 {
    top: 695px;
}

.buy-button1 {
    width: 102px;
    height: 25px;
    left: 253px;
    top: 334px;
    text-align: center;
    color: white;
    font-size: 20px;
    font-family: "Inika";
    font-weight: 400;
    word-wrap: break-word;
    display: flex;
    justify-content: center;
    align-items: center;

}

.buy-button1 {
    width: 128px;
    height: 45px;
    background: black;
    border-radius: 20px;
    border: 1px white solid;
}

.buy-button2 {
    width: 102px;
    height: 25px;
    left: 253px;
    text-align: center;
    color: white;
    font-size: 20px;
    font-family: "Inika";
    font-weight: 400;
    word-wrap: break-word;
    display: flex;
    justify-content: center;
    align-items: center;
}

.buy-button2 {
    width: 128px;
    height: 45px;
    background: black;
    border-radius: 20px;
    border: 1px white solid;
}

.buy-button3 {
    width: 102px;
    height: 25px;
    left: 253px;
    top: 793px;
    text-align: center;
    color: white;
    font-size: 20px;
    font-family: "Inika";
    font-weight: 400;
    word-wrap: break-word;
    display: flex;
    justify-content: center;
    align-items: center;
}

.buy-button3 {
    width: 128px;
    height: 45px;
    background: black;
    border-radius: 20px;
    border: 1px white solid;
}

main {
    color: #970000;
}

.overlay {
    display: block;
    unicode-bidi: isolate;
}

main {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(225, 8, 8, 0.75);
    background-image: url(https://i.kym-cdn.com/photos/images/original/001/373/079/7c3.jpg);
    background-blend-mode: overlay;
    z-index: -1;
}

.item-container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.responsive {
    width: 100%;
    height: auto;
}

@media (min-width: 2000px) {
    .item-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .responsive {
        width: 100%;
        height: auto;
    }
}
@keyframes myAnimation{
    0%{opacity: 0; transform: translateY(-15px);}
    100%{opacity: 1; transform: translateY(0px)}
}