:root {
    --vw: 100vw;
    --vh: 100vh;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('nicebackground50.png');
    background-size: cover;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* FIRST BLOCK */
#main-warning {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    top: 0;
    left: 0;
    width: calc(var(--vw) * 100);
    background-color: whitesmoke;
    box-sizing: border-box;
    padding: 5px 0 10px 0;
    opacity: 1;
    transition: opacity 5s ease;
}

#my-website {
    font-weight: bold;
    color: #8664C6;
}

.enumeration {
    font-size: 20px;
    font-weight: bold;
    color: #8664C6;
}

#main-warning-countdown {
    font-weight: bold;
    color: #8664C6;
}


/* MAIN-CONTAINER */

#main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    width:calc(var(--vw) * 90);
    min-height:calc(var(--vh) * 90);
    margin-top: 80px;

    box-sizing: border-box;
    padding: 10px;
}

#title {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #8664C6;
}

#title-image{
    width: 30px;
    padding: 5px;
    border: 3px solid #8664C6;
    background-color: #FFF0F5;
    border-radius: 5px;
}

#title-image:hover {
    cursor: pointer;
    background-color: pink;
}

#product-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

#productName {
    width: 400px;
    height: 40px;
    border: 3px solid #8664C6;
    border-radius: 5px;
}

#product-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    width: 95%;
    padding: 10px;
    box-sizing: border-box;
}

.product-card {
    width: 380px;
    padding: 5px;
    box-sizing: border-box;
    border: 3px solid #8664C6;
    background-color: #FFF0F5;
    border-radius: 5px;
}

.product-card.done {
    background-color: white; /* or light green */
}

.single-product {
    font-size: 20px;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.single-product::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.status {
    display: flex;
    gap: 10px;
}

.status button {
    width: 100px;
    box-sizing: border-box;
    padding: 5px;
    background-color: pink;
    border-radius: 5px;
    border-color: white;
    font-weight: bold;
}

.status button:hover {
    cursor: pointer;
    background-color: #FBE4EE;
    color: #8664C6;
}

.line-break {
    display:none;
}

.shareBtn {
    width: 240px;
    box-sizing: border-box;
    background-color: #8664C6;
    padding: 5px;
    color: white;
    font-weight: bold;
    border-color: white;
    border-radius: 5px;
    margin-top: 10px;
}

.shareBtn:hover {
    background-color: #E6E1F9;
    color: #8664C6; 
}

.retriveBtn {
    width: 240px;
    box-sizing: border-box;
    background-color: #7FFFD4;
    padding: 5px;
    color: black;
    font-weight: bold;
    border-color: white;
    border-radius: 5px;
    margin-top: 10px;
}

.retriveBtn:hover {
    background-color: #E6E1F9;
    color: black; 
}


@media screen and (max-width: 600px) {


#main-warning {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(var(--vw) * 100);
    font-size: 12px;
    opacity: 1;
    transition: opacity 5s ease;
}

#my-website {
    text-align: center;
}

.line-break {
    display: flex;
}

#item-enumeration {
    width: 80%;
    text-align: center;
}

.enumeration {
    font-size: 14px;
}

#main-container {
    margin-top: 120px;
}

#title {
    font-size: 20px;
}

#product-info {
    gap: 10px;
}

#productName {
    width: 220px;
    height: 30px;
}

#title-image {
    width: 20px;
}

.product-card {
    width: 330px;
}

.single-product {
    font-size: 14px;
    overflow-x: auto;
    scrollbar-width: none;
}

.single-product::-webkit-scrollbar {
    width: 0;
    height: 0;
}

}