* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    min-height: 100vh;
    background-image: url("https://source.unsplash.com/nDqA4d5NL0k/2000x2000");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10vh 0;
}
.container {
    width: 40%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 8px 0px #121212;
}
.item {
    padding: 15px 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    font-size: 1.1em;
    color: #121212;
}
.container .item:last-child {
    border: none;
    border-radius: 0px 0px 10px 10px;
}
.container .item:nth-child(even) {
    background-color: rgba(100, 148, 237, 0.15);
}
.item::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: black;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 700px) {
    .container {
        width: 80%;
    }
}
