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

body {
    background: #ffbf00;
    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: #006eff;
}

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

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

.inbox {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 4px;
    box-shadow: 8px 8px rgba(0, 0, 0, 0.1);
    min-width: 300px;
}

.inbox .item {
    display: flex;
    font-size: 20px;
    align-items: center;
    padding: 12px;
    border-bottom: 0.3px solid #999999;
}

.inbox .item:last-child {
    border-bottom: none;
}

.inbox .item input {
    margin-right: 12px;
    padding-right: 12px;
    border-right: 1px solid #9ab5ff;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

input[type="checkbox"]:checked + p {
    text-decoration: line-through;
    color: #999;
    opacity: 0.6;   
    transition: all 0.1s ease-in; 
}

p {
    margin-left: 8px;
}