* {
    font-family: 'Poppins', sans-serif;
    margin: 0; /* sets the default set up for the css styles*/
    padding: 0;
    box-sizing: border-box;
}

body {
    /* background-image: linear-gradient(120deg, #e2c35d, #fda085); */
    background: linear-gradient(217deg, rgba(233, 233, 233, 0.04) 0%, rgba(233, 233, 233, 0.04) 9%,rgba(203, 203, 203, 0.04) 9%, rgba(203, 203, 203, 0.04) 18%,rgba(213, 213, 213, 0.04) 18%, rgba(213, 213, 213, 0.04) 61%,rgba(4, 4, 4, 0.04) 61%, rgba(4, 4, 4, 0.04) 100%),linear-gradient(213deg, rgba(54, 54, 54, 0.04) 0%, rgba(54, 54, 54, 0.04) 37%,rgba(205, 205, 205, 0.04) 37%, rgba(205, 205, 205, 0.04) 61%,rgba(216, 216, 216, 0.04) 61%, rgba(216, 216, 216, 0.04) 75%,rgba(103, 103, 103, 0.04) 75%, rgba(103, 103, 103, 0.04) 100%),linear-gradient(304deg, rgba(127, 127, 127, 0.04) 0%, rgba(127, 127, 127, 0.04) 5%,rgba(199, 199, 199, 0.04) 5%, rgba(199, 199, 199, 0.04) 36%,rgba(103, 103, 103, 0.04) 36%, rgba(103, 103, 103, 0.04) 86%,rgba(183, 183, 183, 0.04) 86%, rgba(183, 183, 183, 0.04) 100%),linear-gradient(90deg, rgb(1, 100, 158),rgb(10, 183, 235));
    color: white;
    min-height: 100vh;
}

header {
    font-size: 24px;
    text-transform: uppercase;
}

.footer-container {
    align-items: center;
    text-align: center;
    font-size: 16px;
    margin-top: 25px;
}

header, form {
    min-height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

form input, form button {
    padding: 8px;
    font-size: 32px;
    border: none;
    background: white;
}

form button {
    /* color: #d88771; */
    color: #ff6f47;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    background-color: #ff6f47;
    color: white;
}

option {
    font-size: 16px;
}

.todo-input { /* slight curve on the left side of the input text field */
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.todo-button {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.todo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.todo-list {
    min-width: 30%;
    list-style: none;
}

.todo {
    margin: 8px;
    background: white;
    color: black;
    font-size: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
}

.todo li {
    flex: 1;
}

.todo-item {
    width: 400px;
}

.trash-btn, .complete-btn {
    background: #ff6f47;
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
}

.complete-btn {
    background-color: rgb(73, 204, 73);
}

.trash-btn:hover {
    background: rgb(238, 51, 51);
}

.complete-btn:hover {
    background: rgb(5, 129, 245);
}

.todo-item {
    padding: 0 15px;
}

.todo {
    border-radius: 6px;
}

.fa-trash, .fa-check {
    pointer-events: none; /* prevents clicking on the icon */
}

.trash-btn { /* slight curve on the end of the trash butotn on the right */
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.social-icons {
    text-decoration: none; /* removes the _ between the two different icons */
}

.fa-linkedin-in {
    color: white;
    padding: 2.5px;
    font-size: 24px;
}

.fa-github {
    color: white;
    padding: 2.5px;
    font-size: 24px;
}

.completed {
    text-decoration: line-through;
    opacity: 0.5;
}

.fall {
    transform: translateY(8rem) rotateZ(20deg);
    opacity: 0;
}

/* selector styling */

/* remove styles from the select tag */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: none;
}

.select {
    margin: 16px;
    position: relative;
    overflow: hidden;
}

select {
    color: #ff6f47;
    width: 12rem;
    cursor: pointer;
    padding: 24px; /* was 16px */
    font-size: 14px;
    border-radius: 6px;
}

.select::after {
    content: "\25BC";
    position: absolute;
    background: #ff6f47;
    top: 0;
    right: 0;
    padding: 20px;
    pointer-events: none;
    transition: all 0.3s ease;
    height: 32px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.select:hover::after {
    background: white;
    color: #ff6f47;
}

@media only screen and (max-width: 768px) {
    .todo-input {
        width: 225px;
        margin-left: 10px;
    }

    select {
        width: 90px;
        font-size: 12px;
    }

    .todo-item {
        width: 275px;
    }

    .select::after {
        padding: 5px;
        height: 100px;
        
    }
}