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

body {
    background: #eee;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    font-size: 80px;
    font-weight: 150 !important;
}

.text-deco-none {
    text-decoration: none;
}

.text-color,
.typed-cursor {
    color: #3e0000;
}

.hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

/* --------------------------------------*/

.list-container {
    background-color: white;
    border-radius: 4px;
    min-width: 480px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1); 
}

.list-container ul {
    margin: 0;
    padding: 0;
    width: 100%;
}

.list-container li {
    border-bottom: 1px solid #e2e2e2;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.list-container li:last-child {
    border-bottom: none;
}