@font-face {
    font-family: Geometos;
    src: url(Geometos.ttf);
}
*{
    padding: 0px;
    margin: 0px;
    text-decoration: none;
}
body {
    background-color: #252931;
    font-family: Geometos, Helvetica, sans-serif;
    font-size: 20px;
    color: #d6e3f8;
}
.indexheader{
    display: flex;
    width: 100%;
    padding: 30px 0;
    justify-content: center;
}
.backtohomebutton{
    position: absolute;
    top: 30px;
    right: 30px;
}
.flexmain{
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 50px;
}
.flexcontainer{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.flexcontainer div{
    background: linear-gradient(90deg, #30343f, #3d424f, #30343f);
    background-size: 250%;
    background-position: left;
    padding: 20px;
    text-align: center;
    border: 5px solid black;
    border-radius: 20px;
    height: 100%;
}
.flexcanvasmain{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 800px;
    transition: 500ms ease;
}
.flexcanvasmain:hover{
    background-position: right;
}
.flexcanvasbbbw{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 500px;
    gap: 10px;
    transition: 500ms ease;
}
.flexcanvasbbbw:hover{
    background-position: right;
}
.normalbutton{
    padding: 10px 20px;
    margin: auto;
    border-radius: 999px;
    font-family: Geometos, Helvetica, sans-serif;
    font-size: 15px;
    background-color: #F8EBD6;
    color: #30343f;
    transition: 300ms ease;
}
.normalbutton:hover{
    background-color: #f7cccc;
    transform: scale(1.05);
}
.infotext{
    font-family: Geometos, Helvetica, sans-serif;
    font-size: 15px;
    color: #F8EBD6;
}

@keyframes introload{
    0% {
        opacity: 0;
        transform: scale(0.8);
        filter: blur(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

.flexcanvasmain{
    animation: introload 0.5s ease-in;
}
.flexcanvasbbbw1{
    animation: introload 0.7s ease-in;
}
.flexcanvasbbbw2{
    animation: introload 0.9s ease-in;
}
.flexcanvasbbbw3{
    animation: introload 1.1s ease-in;
}
.flexcanvasbbbw4{
    animation: introload 1.3s ease-in;
}

@keyframes pulsingalert{
    0% {
        background: linear-gradient(90deg, #30343f, #533c3c, #30343f);
        background-size: 250%;
        background-position: left;
    }
    50% {
        background: linear-gradient(90deg, #30343f, #533c3c, #30343f);
        background-size: 250%;
        background-position: right;
        border-color: #533c3c;
        box-shadow: 0px 0px 150px 20px #533c3c;
    }
    100% {
        background: linear-gradient(90deg, #30343f, #533c3c, #30343f);
        background-size: 250%;
        background-position: left;
    }
}
.alertanimation{
    animation: pulsingalert 2s ease-in-out infinite;
}



/* css for the inventory page */

.inventoryh1div{
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}
.inventoryh1{
    padding: 0;
    text-align: left;
}
.flexinventorymain{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.flexinventoryouter{
    width: 95%;
    height: 60px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, black, #30343f, black);
    background-size: 250%;
    background-position: left;
    border-radius: 999px;
    transition: 1s ease;
}
.flexinventoryouter:hover{
    background-position: right;
}
.flexinventoryinner{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-image: linear-gradient(90deg, #30343f, #3d424f);
    border-radius: 999px;
}
.itemtexts{
    width: 15%;
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.inventorybutton{
    padding: 5px 10px;
    margin: auto;
    border-radius: 999px;
    font-family: Geometos, Helvetica, sans-serif;
    font-size: 20px;
    background-color: #F8EBD6;
    color: #30343f;
    transition: 300ms ease;
}
.inventorybutton:hover{
    background-color: #f7cccc;
    transform: scale(1.05);
}

@keyframes bounce-in-right {
    0% {
        opacity: 0;
        transform: translateX(2000px);
        filter: blur(20px);
    }
    60% {
        opacity: 1;
        transform: translateX(-30px);
    }
    80% { transform: translateX(10px); }
    100% {
        transform: translateX(0);
        filter: blur(0);
    }
}
.flexouternames{
    animation: bounce-in-right 0.8s ease-in;
}
.flexouteritem1{
    animation: bounce-in-right 1s ease-in;
}
.flexouteritem2{
    animation: bounce-in-right 1.2s ease-in;
}
.flexouteritem3{
    animation: bounce-in-right 1.4s ease-in;
}
.flexouteritem4{
    animation: bounce-in-right 1.6s ease-in;
}

.flexinventorychart{
    background: linear-gradient(90deg, #30343f, #3d424f, #30343f);
    border: 5px solid black;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-bottom: 30px;
    animation: bounce-in-right 1.8s ease-in;
}

/* home page */

.flexhomemain{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
.homeh1{
    padding-top: 30px;
}
.divfloorplan{
    height: 900px;
    width: 1100px;
    background: linear-gradient(90deg, #30343f, #3d424f, #30343f);
    background-size: 250%;
    background-position: left;
    padding: 20px;
    border: 5px solid black;
    border-radius: 20px;
    text-align: center;
    color: #d6e3f8;
    transition: 1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.divfloorplan:hover{
    background-position: right;
}
.divshelfimage{
    width: 200px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 500ms ease;
}
.divshelfimage:hover{
    transform: scale(1.05) rotate(2deg);
}
.shelfimage1{
    position: absolute;
    top: 190px;
    right: 720px;
}
.shelfimage2{
    position: absolute;
    top: 190px;
    right: 500px;
}
.shelfimage3{
    position: absolute;
    top: 190px;
    right: 280px;
}
.shelfimage4{
    position: absolute;
    top: 660px;
    right: 720px;
}
.shelfimage5{
    position: absolute;
    top: 660px;
    right: 500px;
}
.shelfimage6{
    position: absolute;
    top: 660px;
    right: 280px;
}
.divshelfinfo{
    border: 5px solid black;
    border-radius: 20px;
    background-color: #252931;
    position: fixed;
    bottom: 100px;
    padding: 20px;
    opacity: 0;
    transition: 200ms ease;
    z-index: 100;
    font-size: 30px;
}
.shelfimage1:hover + .shelfinfo1{
    opacity: 1;
}
.shelfimage2:hover + .shelfinfo2{
    opacity: 1;
}
.shelfimage3:hover + .shelfinfo3{
    opacity: 1;
}
.shelfimage4:hover + .shelfinfo4{
    opacity: 1;
}
.shelfimage5:hover + .shelfinfo5{
    opacity: 1;
}
.shelfimage6:hover + .shelfinfo6{
    opacity: 1;
}