@font-face {
    font-family: 'Poppins medium';
    src: url("/assets/fonts/Poppins-Medium.ttf");
}

* {
    padding: 0;
    margin: 0;
    font-family: "Poppins medium", serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    background: url('/assets/images/background.jpg') center center no-repeat;
    background-size: cover;
    height: 100vh;

    display: flex;
    flex-direction: column;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#logo {
    display: flex;
    justify-content: center;
    height: 220px;
    margin: 20px auto;
}

.border-t {
    border-top: 2px solid black;
}

.spacer {
    margin: 15px 0 0;
    padding: 15px 0 0;
}

.text-container {
    text-align: center;
    font-size: 1.5rem;
    max-width: 500px;
    margin-bottom: 35px;
}

.customer-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    margin-right: auto;
    margin-left: auto;
}

.customer-box {
    box-shadow: 3px 5px 12px #eeeeee;
    opacity: 80%;
    background-color: white;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    justify-content: center;
}

.customer-box:hover {
    opacity: 85%;
    background-color: #8ED6FB;
    box-shadow: 3px 5px 12px #8ED6FB;
    cursor: pointer;
}

.customer-img {
    max-height: 120px;
}

footer {
    margin-top: auto;
    background-color: #173C54;
    padding: 10px 0;

    display: flex;
    justify-content: center;

    color: white;
    font-weight: bold;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 16px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    /*.customer-container {*/
    /*    grid-template-columns: 1fr;*/
    /*    width: 100%;*/
    /*    grid-gap: 10px;*/
    /*}*/

    /*#logo {*/
    /*    height: 180px;*/
    /*}*/

    /*.customer-box {*/
    /*    width: auto;*/
    /*    padding: 0;*/

    /*    margin: 0 20px;*/
    /*}*/

    /*.customer-img {*/
    /*    padding: 16px;*/
    /*}*/

    /*.text-container {*/
    /*    max-width: 90%;*/
    /*    margin: 0 auto;*/
    /*}*/

    .customer-box {
        width: 80vw;
    }

    .customer-img {
        width: 80vw;
    }

    .divider {
        display: none;
    }

    footer {
        display: block;
        text-align: center;
    }

    footer a {
        display: block;
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 601px) {
    /*.customer-container {*/
    /*    grid-template-columns: 1fr;*/
    /*    width: 100%;*/
    /*    grid-gap: 0;*/
    /*}*/

    /*.customer-box {*/
    /*    width: auto;*/
    /*    margin: 10px;*/
    /*}*/

    /*.text-container {*/
    /*    max-width: 90%;*/
    /*    margin: 0 auto;*/
    /*}*/

    .customer-box {
        width: 90vw;
        margin-bottom: 20px;
    }

    .divider {
        display: none;
    }

    footer {
        display: block;
        text-align: center;
    }

    footer a {
        display: block;
        margin-bottom: 5px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up)
@media only screen and (min-width: 600px) {...}

/* Medium devices (landscape tablets, 768px and up)
@media only screen and (min-width: 768px) {...}

/* Large devices (laptops/desktops, 992px and up)
@media only screen and (min-width: 992px) {...}

/* Extra large devices (large laptops and desktops, 1200px and up)
@media only screen and (min-width: 1200px) {...}
*/
