html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    background-color: #000;
    font-family: 'Inter', sans-serif;
    color: rgba(230, 230, 230, 0.85);
    background-color: black;
}

.landing-container{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: first center;
    align-items: center;
    background-image: url("PIC/ARIXO-logo.png");
    background-size: 60% auto;
    background-repeat: no-repeat;
    background-position: center;
    background-color: black;
    width: 100%;
    min-height: 100vh;
}

.landing-container h1{
    opacity: 0;
}

.landing-container h2{
    opacity: 0;
}

.reagon-div{
    width: 100%;
    height: 10vh;
    background: linear-gradient(to bottom, #000000, #060F16);
}

.main-container{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-end; /* pushes inner content to bottom */
    /* align-items: center; */
    background-image: url("PIC/ARIXO-Museum.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    background-color: black;
    width: 100%;
    min-height: 100vh;
}

.Project-Containers {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 30%;
    height: 100%;
    box-shadow: 0 0 30px rgba(0,0,0,0.9);
    margin-top: 15px;
    border-radius: 6px;
}

[class^="item-Container-"]{
    margin: 10px;
    padding: 5px 15px;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    height: 50%;
    max-height: 300px;
    box-sizing: border-box;
    box-shadow: 0 0 10px 2px rgba(100, 150, 255, 0.2), 0 4px 15px rgba(0, 0, 0, 0.5);
    color: rgba(230, 230, 230, 0.85);
    text-align: center;
    z-index: 1;
    transition: all 0.6s ease-in-out;
}

[class^="item-Container-"]:hover{
    transform: scale(1.05);
}

[class^="item-Container-"] img {
    width: 65%;
    height: 68%;
    border-radius: 8px;
    opacity: 0.5;
    filter: blur(0.1px); 
    pointer-events: none;
}


.Project-Containers [id^="interactiveDIV-"].focused button{
    cursor: pointer;
    pointer-events: initial;
    opacity: 1;
}   

@keyframes load {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
        align-items: center;
        background-image: inherit;
    }
    .Project-Containers {
        width: 80%;
    }
    .reagon-div{
        opacity: 0;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .landing-container {
        background-size: 80% auto;
        padding: 20px;
        text-align: center;
    }
    .reagon-div{
        opacity: 0;
    }
    .main-container {
        flex-direction: column;
        background-image: inherit;
    }
    .Project-Containers {
        width: 95%;
    }
    [class^="item-Container-"] img {
        max-width: 200px;
    }
}