body{
    background-color: rgb(75, 189, 255);
    padding: 0px 0px 0px 0px;
    margin: 0px !important;

}
nav{
    background-color: white !important;
    height: 5rem !important;
    position: fixed;
    width: 100vw;
    z-index: 1000;
}
.title-logo{
    height: 5rem;
}
.main-section{
    padding: 1rem;
    padding-top: calc(5rem + 1rem);

    list-style: none;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
    gap: 2px;
}
.item{
    max-width: 400px;
}
.item-container{
    width: fit-content;
    position: relative;
    overflow: hidden;
    width: auto;
    aspect-ratio: 14/9;
    
    display: flex;
    align-items: center;
    justify-content: center;
}
.item .item-blur-background{
    position: absolute !important;
    z-index: -1;
    height: 100%;
    width: 100%;
    filter: blur(10px);

}
.item-container .item-background{
    height: 100%;
}
.item-container .bottom{
    position: absolute;
    height: 17%;
    
    left: 0px;
    right: 0px;
    bottom: 0px;

    display: flex;
    align-items: center;
    padding-left: 0.6rem;
    background-color: rgba(0, 0, 0, 0.541);
    color: white;
}
.item-container .bottom .material-symbols-outlined{
    padding-right: 0.3rem;
}
.image{
    cursor: pointer;
}
.image .image-picture{
    transition: transform 0.3s;
}
.image .image-picture:hover{
    transform: scale(1.1);
}
#errorFrame{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}