main section {
    padding-bottom: 50px;
}

main h2 {
    text-align: center;
    font-size: 30px;


}

main ul {
    display: flex;
    justify-content: space-between;
}

main ul a {
    text-decoration: none;
    color: black;
}

main ul a li {
    border: black solid 2px;
    list-style: none;
    display: flex;
    flex-direction: column;
    height: 300px;
    justify-content: space-around;
    align-items: center;
    width: 280px;
    text-align: center;
    background-color: white;
    border-radius: 10px;
    box-sizing: border-box;
}

main ul li img {
    width: 150px;
}

main ul a:hover {
    transition: all .4s ease-in-out;
    transform: scale(1.1);
}

