#varius-boxes-center
{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--top-menu-bar-color);
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.title-of-varius-boxes-center
{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 40pt;
    text-transform: uppercase;
    color: var(--body-font-color);
}

.box1
{
    position: relative;
    top: 0;
    left: 0;
    width: 300px;
    height: 360px;
    padding: 10px;
    border: 0;
    border-radius: 10px;
    background-color: var(--bg-box-color-1);
    color: var(--font-box-color-1);
    cursor: pointer;
    transition: 300ms ease all;
}
.box1 h2
{
    width: 100%;
    text-align: center;
    font-size: 20pt;
    z-index: 3;
    text-decoration-line: none;
}
.box1 p
{
    text-align: justify;
    font-size: 12pt;
    z-index: 2;
    color: var(--font-box-color-1);
    text-decoration: none;
}
#background-for-box1
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 0.2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.box1:hover
{
    background: linear-gradient(40deg, var(--DaiOrange), var(--new_logo_color-2), var(--new_logo_color-3));
    color: white;
    box-shadow: 0 0 10px black;
}
.box1:hover p {
    color: black;
}