:root{
    /* za mt spacing */
    --margin: 75px;
    --text-color: #f5eee6;
}
body{
    margin: 0;
    padding: 0;

    background-color: #131313;

    color: var(--text-color);
    font-family: 'Montserrat';
}

.container2{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 600px;
    height: 600px;
    margin-left: -300px;
    /* -1/2 width */
    margin-top: -300px;
    /* -1/2 height */

    /* background-color: aqua; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container{
    width: 30%;
    /* background-color: rgb(79, 79, 79); */
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image{
    margin-top: 200px;
    width: 250px;
    height: 250px;

    border-radius: 50%;
    border: 2px solid #dc693a;
    filter: drop-shadow(0 0 8px #ff5722);
}

.title{
    width: 100%;
    margin-top: var(--margin);
    font-weight: 700;
    font-size: 40px;
    text-align: center;
}

.text{
    width: 100%;
    margin-top: var(--margin);
    font-size: 20px;
    text-align: center;
}

.text-align-left{
    text-align: left;
}

.card-grid
{
    margin-top: calc(var(--margin) / 3);
    display: grid;
    gap: 1rem;
    width: 100%;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(46, 46, 46, 0.59);
    color: var(--text-color);
    height: 100%;
    width: 100%;
    border-radius: 15px;
    transition: all 500ms;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card:hover {
    box-shadow: rgba(2, 8, 20, 0.1) 0px 0.35em 1.175em, rgba(2, 8, 20, 0.08) 0px 0.175em 0.5em;
    transform: translateY(-3px) scale(1.05);
}

.card-title{
    font-size: 25px;
    margin-top: 20px;
    align-items: center;
}

.card-logo{
    margin-top: 20px;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.card-link{
    color: var(--text-color);
    text-decoration: none; /* no underline */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lunch-logo-mod{
    background-color: #7ea3ff;
}

@media only screen and (max-width: 768px) {
    .container{
        width: 85%;
    }
    .image{
        margin-top: 100px;
        width: 150px;
        height: 150px;

        border-radius: 150px;
    }
    .title
    {
        font-size: 25px;
    }
    .text{
        font-size: 16px;
    }
}

@media only screen and (max-width: 1680px) {
    :root{
        /* za mt spacing */
        --margin: 50px;
    }
    .container{
        width: 80%;
    }
    .image{
        margin-top: 100px;
        width: 150px;
        height: 150px;

        border-radius: 150px;
    }
    .title
    {
        font-size: 25px;
    }
    .text{
        font-size: 16px;
    }
}