html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: "Raleway-Regular";
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url(./assets/img/background_image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

input:focus {
    outline: none;
}

.logo {
    width: auto;
    height: 150px;
}

main {
    width: 100%;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 24px;
}

#content {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1440px;
    overflow-y: scroll;
    scrollbar-width: none;
}

.loadingSpinnerContainer {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
}

#loadingSpinner {
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loadMoreBtnContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loadMoreBtn {
    font-size: 24px;
    border-radius: 8px;
    border: 0;
    margin-bottom: 12px;
    cursor: pointer;
}

.d_none {
    display: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.arrow {
    width: 48px;
    height: 48px;
    cursor: pointer;
}