html {
    background: #f3f4f6;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: #172b37;
    line-height: 1.4;
}

header {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

main {
    background-color: #FFF;
    border-radius: .5rem;
    padding: .5rem 2rem;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
    color: #333;
    max-width: 510px;
    padding-bottom: 2rem;
}

a {
    color: inherit;
    text-decoration: underline;
}

h3 {
    margin: 1.5rem 0 1rem 0;
}

.container {
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    column-gap: 4rem;
    row-gap: 2rem;
    flex-wrap: wrap;
}

form {
    margin-top: 1rem;
    margin-bottom: 2rem;
    text-align: right;
}

form button {
    background: #172b37;
    border-radius: 4px;
    font-size: 1rem;
    border: none;
    padding: .5rem .75rem;
    color: #FFF;
    cursor: pointer;
}

form button:hover {
    background: #395566;
}

footer {
    color: #444;
    padding: 1rem 2rem;
    max-width: 520px;
}

p.text-small, .text-small p {
    font-size: .8rem;
}

.bs-logo {
    background-color: #0078b9;
    padding: 0.25rem;
    border-radius: 4px;
}
.bs-logo img {
    display: block;
}

.list-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.list-item-number {
    font-weight: bold;
    color: #FFF;
    background-color: #172b37;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* inter-300 - latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: local(''),
         url('./fonts/inter-v8-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('./fonts/inter-v8-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* inter-regular - latin */
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: local(''),
         url('./fonts/inter-v8-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('./fonts/inter-v8-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* inter-500 - latin */
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: local(''),
         url('./fonts/inter-v8-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('./fonts/inter-v8-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* inter-700 - latin */
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: local(''),
         url('./fonts/inter-v8-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('./fonts/inter-v8-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }