﻿main article:NOT(#socials) {
    display: flex;
    flex-flow: column nowrap;
    margin: 20px;
    padding: 10px;
    background-color: bisque;
    border: 2px solid black;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

a.button {
    display: block;
    text-align: center;
    color: black;
    text-decoration: none;
    border: 3px solid black;
    border-radius: 20px;
    width: 50%;
    padding: 10px;
    margin: auto;
    margin-bottom: 15px;
}

    a.button:hover {
        color: white;
        background-color: black;
    }

main img {
    min-width: 190px;
    max-width: 400px;
    max-height: 100%;
    border: 3px solid black;
    margin: 1px;
    height: auto;
}

@supports (height: fit-content) {
    main img {
        height: fit-content;
    }
}

