body {
    margin: 0;
    font-family: sans-serif;
}

.top {
    width: 100%;
    height: 30px;

    display: flex;
}
.top .name {
    margin: auto auto auto 10px;
}

.main {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto 0 auto;

    display: flex;
    flex-direction: column;
}

.enter_url {
    display: flex;
    flex-direction: column;
}
.enter_url #url {
    border: gray 1px solid;
    border-radius: 3px;
    height: 30px;
    padding-left: 10px;
}
.enter_url button {
    margin-top: 10px;
    height: 40px;
    width: 100%;
    border: gray 1px solid;
    border-radius: 3px;
    background-color: #715ead;

    font-size: 20px;
    color: white;

    transition: all 100ms;
}
.enter_url button:hover {
    cursor: pointer;
    font-size: 22px;
    height: 44px;
    background-color: #5e557d;
}
.enter_url label {
    margin-top: 5px;
}

#select_format {
    border: gray 1px solid;
    border-radius: 3px;
    height: 30px;
    padding-left: 10px;
}




.downloaders {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.task {
    margin-top: 20px;

    width: 100%;
    height: 300px;
    background-color: #eee;

    display: flex;
}
.task div {
    display: flex;
    flex-direction: column;
    width: 65%;
}
.task #thumbnail {
    height: 100%;
    width: 35%;
    object-fit: cover;
    background-color: black;
}
.task #title {
    margin: 10px auto 0 auto;
    width: 90%;
    text-align: center;
    font-size: 20px;
}
.task #progress {
    margin: auto 0 auto 0;

    position: relative;

    width: 100%;
    height: 50px;

    background-color: #bbb;
}
.task #progress label {
    width: 100%;
    height: 100%;

    font-size: 20px;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 0;
    left: 0;

    z-index: 2;
}
.task #progress div {
    height: 100%;
    width: 100%;
    background-color: #715ead;
    z-index: 1;
}


.task button {
    margin: auto auto auto auto;
    height: 40px;
    width: 90%;
    border: gray 1px solid;
    border-radius: 3px;
    background-color: #715ead;

    font-size: 20px;
    color: white;
    display: none;

    transition: all 100ms;
}
.task button:hover {
    cursor: pointer;
    font-size: 22px;
    height: 44px;
    background-color: #5e557d;
}
.task .dl_con {
    height: 80px;
    width: 100%;
}

.error {
    width: 100%;
    color: red;
    text-align: center;
}
