@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

html {
    font-family: 'Poppins', sans-serif;
    color:  #333;
}

a {color: inherit;}
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.content {
    width:100%;
}

ul {
    padding:0;
    margin:0;
    width: 94vw;
}
li  {
    list-style-type:none;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border: 1px solid #ddd;
    padding: 14px;
    text-align: center;
    margin: 20px;
    flex-shrink: 0;
    flex-grow: 1;
    box-shadow: 0px 2px 9px 1px rgba(0, 0, 0, 0.2);
}

footer {
    font-size: 0.8em;
}