* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
    background-color: #415A77;
    padding: 2vw;
}

.wrapper {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ddd;
    gap: 4px;
}

ul li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

strong {    
    position: relative;
    /* border-right: 1px solid #ddd;     */
}

/* strong:after {
  content: "";
  position: absolute;
  height: calc(100% + 30px);
  width: 1px;
  background-color: #ddd;
  right: -1px;
  bottom: -15px;
} */

a.link {
  word-break: break-all;
  overflow-wrap: anywhere;
}

.no-link {
  -webkit-touch-callout: none;
}

@media (max-width: 675px) {
    body {
        padding: 5vw;
    }
    ul li {
        gap: 5px;
        grid-template-columns: 1fr;
    }
    strong { 
        display: block;
           border-right: 0;
    }
    strong:after {
        display: none;
    }
}