.title-container {
    position: absolute;
    display: flex;
    z-index: 0;
    top: 0%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.title-container>h1{
    font-size: 5rem;
}

.title {
    filter: drop-shadow(0px 4px 4px var(--accent));
    text-align: center;
}

.image-container {
    position: relative;
    display: flex;
    z-index: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px;
    top: 0%;
    width: 100%;
}

.image {
    /* margin: auto; */
    max-width: 500px;
    max-height: 500px;
    min-width: 100px;
    min-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0px 4px 4px var(--accent));
}

.spacer {
    height: 50px;
    width: 100%;
}
.bottom-spacer{
    height: 100px;
}

.content-container{
    position: relative;
    top: 20%;
}

.arrow-button {
    background-color: transparent;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    color: var(--primary);
    outline: none;
  }
  
  .arrow {
    /* transform: rotate(90deg); */
  }