* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: arial, sans-serif;
    background-color: #000;
}

.wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #000;
    text-align: center;
}

form {
    width: 100%;
    height: 30vh;
    color: red;
    overflow: hidden;
}

form input {
    width: 40%;
    height: 3vh;
    margin: 1vh 0;
    padding: 15px;
    border: 2px solid #eec015;
    background-color: #303f42;
    color: white;
    font-size: 25px;
}

form input:focus {
    outline: none;
}

form button {
    margin: 1vh 0;
    padding: 8px;
    border: 2px solid #eec015;
    border-radius: 5%;
    background-color: #303f42;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 20px;
    transition: .3s linear;
    outline: none;
}

form button:hover {
    border: 2px solid #303f42;
    background-color: #eec015;
    color: #303f42;
}

.search {
    display: block;
    margin: 1vh auto;
    width: 51%;
}

.task-holder {
    position: relative;
    width: 100%;
    min-height: 70vh;
    bottom: 0;
    left: 0;
    background-color: black;
}

.task-holder ul {
    list-style: none;
}

.task {
    position: fixed;
    width: 15vh;
    height: 15vh;
    left: 1vw;
    padding: 10px;
    background-color: #303f42;
    border: 2px solid #eec015;
    cursor: pointer;
    color: white;
    font-size: 25px;
}

.remove {
    position: absolute;
    top: 0;
    right: 0;
    width: 15%;
    height: 15%;
    transform: translate(50%, -50%);
    background-color: white;
    background-image: url(../images/x.png);
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 1px solid white;
    transition: .3s linear;
}

.remove:hover {
    border: 2px solid #eec015
}

@media (max-width: 750px) {
    form {
        height: 100px;
    }

    form input {
        width: 40%;
        height: 35px;
        margin: 6px 0;
        padding: 15px;
    }

    form button {
        margin: 6px 0;
    }

    .search {
        margin: 6px auto;

    }

    .task-holder {
        height: calc(100vh - 200px);
    }

    .task {
        position: relative;
        width: 80%;
        height: 80px;
        margin: 10px auto;
        padding: 10px;
        background-color: #303f42;
        border: 2px solid #eec015;
        cursor: pointer;
        color: white;
        font-size: 25px;
    }

    .remove {
        width: 28px;
        height: 28px;
    }
}
