#content {
    padding: 32px;

    display: flex;
    flex-direction: column;

    overflow: hidden;
}

#page-title {
    width: 100%;

    font-family: "Poppins", sans-serif;
    font-size: 5vh;

    color: white;
    text-align: center;
}

#search-input {
    width: 100%;
    height: 64px;

    flex-shrink: 0;

    margin: 32px 0 16px 0;

    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    color: white;

    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    border: none;
    outline: none;

    padding: 0 16px;
}


#previews {
    width: 100%;
    height: 100%;
    max-height: 100%;

    display: flex;
    flex-direction: column;

    overflow-x: hidden;
    overflow-y: auto;

    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}


#previews .option {
    display: flex;
    align-items: center;

    padding: 1vw;

    height: 48px;
    font-size: 24px;
    color: white;

    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    text-transform: capitalize;

    background-color: rgba(255, 255, 255, 0.05);
}

#previews .option:hover {
    background-color: rgba(0, 0, 0, 0.1);
}