/* 
Colour Palette
https://coolors.co/333333-5c5c5c-e5e5e5-25aae2-a1c6d7-ffde24-fff4a6
--black-substitute: #333333ff;
--dark-grey: #5c5c5cff;
--light-grey: #e5e5e5ff;
--blue: #25aae2ff;
--light-blue: #a1c6d7ff;
--yellow: #ffde24ff;
--light-yellow: #fff4a6ff;
--extra-yellow: #ffeb56ff;
*/

/* Thanks to W3 Docs! https://www.w3docs.com/snippets/css/how-to-center-the-content-in-grid.html */
@media screen and (max-width: 680px){
    .container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 160px;
        margin: 0 auto;
    }

    .container img{
        padding: 5px;
    }

    .container img{
        width: 150px;
        height: 150px;
        border-radius: 50%;
    }

    .container a:hover {
        filter: grayscale(.2) brightness(80%);
    }

    .container a:active {
        transform: scale(1);
        box-shadow: 0 8px 15px rgba(0,0,0,0.3);
    }
}

@media screen and (min-width: 681px) and (max-width: 1199.99px){
    .container_med {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        justify-content: center;
        height: 100%;
        max-width: 720px;
        min-width: 680px;
        margin: 0 auto;
    }
    
    .container_med img{
        padding: 10px 10px;
    }
    
    .container_med img{
        max-width: 200px;
        max-height: 200px;
        border-radius: 50%;
    }

    .container_med a:hover {
        filter: grayscale(.2) brightness(80%);
    }

    .container a:active {
        transform: scale(1);
        box-shadow: 0 8px 15px rgba(0,0,0,0.3);
    }
}

@media screen and (min-width: 1200px){
    .container {
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        height: 100%;
        width: 1280px;
        margin: 0 auto;
    }
    
    .container img{
        padding: 10px 10px;
    }
    
    .container img{
        width: 400px;
        height: 400px;
        border-radius: 50%;
    }

    .container a:hover {
        filter: grayscale(.2) brightness(80%);
    }
    
    .container a:active {
        transform: scale(1);
        box-shadow: 0 8px 15px rgba(0,0,0,0.3);
    }
}