@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

body {
    margin: 0;
    background-color: aliceblue;
    font-family: 'Roboto', serif;
    font-weight: 500;
    font-style: normal;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
}

h1 {
    font-weight: 500;
    color: #0a52a5;
}

.wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0px auto;
}

h1 {
    text-align: center;
}

ul {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 50px;
    padding: 25px;
    padding-top: 0px;
    height: 350px;
    margin: 0px;
}

li {
    width: 100%;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}

li img {
    width: 100px;
    height: 100px;
}

a:link,
a:visited {
    background-color: #0a52a5;
    padding: 0.6rem 1rem;
    text-transform: uppercase;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

a:hover {
    background-color: #2979ff;
}
