@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(18900deg, #fbfbfbd8, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    text-align: center;
    line-height: 100px;
}

h2 {
    width: 100%;
    flex-direction: column;
}

.container {
    margin: auto;
    max-width: 450px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;

    padding-right: 35px;
    font-family: arial;
    font-size: 15px;
  }
  .container ul {
    list-style-type: none;
  }

  .container ul li {
    margin-top: 7px;
    padding-bottom: 3px;
    margin-left: 20px;
    border-bottom: 1px solid;
  }
