#content_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (width < 600px) {
    #content {
        display: none;
    }
}

@media (width >= 600px) {
    #display_size_notice {
        display: none;
    }
}

#display_size_notice {
    margin: 4rem;
}

#content {
    margin: 1rem;
}

#index_page_title {
    margin-top: 2rem;
    text-align: center;
}

#release_notice {
    text-align: center;
}

#view_selection_input_container {
    padding: 0 0 1rem 0;
}

#dashboard_container {
    display: flex;
    justify-content: center;
}

@media (width >= 600px) and (width < 700px) {
    #dashboard {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        row-gap: 2rem;
        width: 100%;
    }
    .dashboard_element {
        border: 2px solid #626262;
        border-radius: 30px;
        padding: 0.5rem;
        width: 500px;
        justify-self: center;
    }
}

@media (width >= 700px) and (width < 1400px) {
    #dashboard {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        row-gap: 2rem;
        width: 100%;
    }
    .dashboard_element {
        border: 2px solid #626262;
        border-radius: 30px;
        padding: 0.5rem;
        width: 600px;
        justify-self: center;
    }
}

@media (width >= 1400px) and (width < 1700px) {
    #dashboard {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        row-gap: 2rem;
        width: 100%;
    }
    .dashboard_element {
        border: 2px solid #626262;
        border-radius: 30px;
        padding: 0.5rem;
        width: 600px;
        justify-self: center;
    }
}

@media (width >= 1700px) {
    #dashboard {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        row-gap: 2rem;
        width: 100%;
    }
    .dashboard_element {
        border: 2px solid #626262;
        border-radius: 30px;
        padding: 0.5rem;
        width: 500px;
        justify-self: center;
    }
}

.dashboard_element_title_and_info_button_container {
    display: flex;
    justify-content: space-between;
}

.dashboard_element_title_container {
    padding-left: 1rem;
}

.dashboard_element_info_button_container {
    padding: 0.7rem 1rem 0 0;
}

.dashboard_element_info_button {
    width: 24px;
    height: 24px;
}
