.medium{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
}

.os_container{
    height: 10em;
    text-align: center;
    margin: 1em;
}

.os_body{
    padding: 1em;
    width: 6em;
    background-color: #EEEEEE;
    font-weight: 600;
    cursor: default;
    border-radius: 5px;
    box-shadow: 0px 0px 20px -2px rgba(34, 60, 80, 0.3);
}

.os_body:hover .logo_container {
    filter: grayscale(0%);
    
}

.os_body:hover .distrib {
    height: auto;
    margin-top: 0.5em;
    padding: 0.2em 1em;
}

.logo_container{
    width: 4em;
    height: 4em;
    margin: auto;
    background-size: cover;         /* Scales the image to completely cover the div */
    background-position: center;   /* Centers the image within the div */
    background-repeat: no-repeat;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.Windows{
    background-image: url("/img/logo_win11_v01.png");
}

.MacOS{
    background-image: url("/img/logo_macos_v02.png");
}

.Linux{
    background-image: url("/img/logo_linux_v01.svg");
}

.Android{
    background-image: url("/img/logo_android_v01.png");
}

.distrib{
    display: block;
    height: 0px;
    margin: auto;
    width: 80%;
    font-size: 0.8em;
    background-color: #DDDDDD;
    border-radius: 5px;
    overflow: hidden;
    color: inherit;
    text-decoration: inherit;
    cursor: inherit;
    transition: all 0.3s;
}

.distrib:hover {
    background-color: #00DD00;
}
