* {
    padding: 0;
    margin: 0;
    border: 0;
    text-decoration: none;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

:root {
    --boss: rgb(160, 160, 160);
    --colors: rgb(210, 198, 198);
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}
body {
}
.all__block {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    background-image: url(./img/wallpaperbetter.com_1920x1080.jpg);
    /* background: red; */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-bottom: 20px;
}
.black {
    position: absolute;
    z-index: 9000;
    opacity: 1;
    background: #000;
    width: 100%;
    /* height: 100%; */
    height: 120vh;
    left: 0;
    top: -100px;
    transition: 1s;
}
.header {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.header__title {
    text-align: center;
    width: 100%;
    font-size: 50px;
    font-family: Arial;
    color: white;
    -webkit-text-stroke: 2.5px #000;
    font-weight: 900;
    margin-top: 30px;
}
.header__optional {
    display: flex;
    gap: 50px;
    margin-top: 20px;
    /* flex-wrap: wrap; */
    /* display: none; */
}
.download {
    max-width: 112px;
    font-size: 24px;
    padding: 20px;
    border-radius: 20px;
    cursor: pointer;
    /* background: #112b12; */
    background: #c5a61bd0;
    color: white;
    margin-left: 20px;
    font-family: Arial;
}
.open {
    max-width: 60px;
    font-size: 24px;
    padding: 20px;
    border-radius: 20px;
    cursor: pointer;
    background: #c5a61bd0;
    color: white;
    font-family: Arial;
}
.open-in-text-document {
    max-width: 250px;
    font-size: 24px;
    padding: 20px;
    border-radius: 20px;
    cursor: pointer;
    background: #c5a61bd0;
    color: white;
    font-family: Arial;
}
.download:hover, .open:hover, .open-in-text-document:hover {
    /* background: #0d402d; */
    background: #e4bb05;
    box-shadow: 0 0 20px rgb(255, 106, 0);
    /* border: 1px solid rgb(255, 106, 0); */
}
.main {
    display: flex;
    flex-direction: column;
    /* gap: 50px; */
    margin-top: 50px;
    gap: 50px;
}
.task {
    border: 1px solid #ffffff;
    color: rgb(225, 184, 4);
    padding: 12px;
    background: inherit;
    background-size: cover;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    font-weight: 900;
    font-size: 24px;
    margin: 0 20px 0 20px;
    /* -webkit-text-stroke: 0.05px rgb(255, 255, 255); */
}
/* Цвет полосы прокрутки */
::-webkit-scrollbar {
    width: 8px; /* Ширина полосы прокрутки */
}
/* Фоновый цвет трека (фона полосы прокрутки) */
::-webkit-scrollbar-track {
    background-image: url(./img/wallpaperbetter.com_1920x1080.jpg);
}
/* Цвет и стиль ползунка (перемещаемой части полосы прокрутки) */
::-webkit-scrollbar-thumb {
    background-color: #e4bb05; /* Цвет ползунка */
    border-radius: 6px; /* Скругление углов ползунка */
}
/* Стиль ползунка при наведении */
::-webkit-scrollbar-thumb:hover {
    background-color: #9f830a; /* Новый цвет ползунка при наведении */
}

/* Стилі для малих екранів (дисплей максимум 767рх) */
@media (max-width: 767px) {
    .task {
        text-align: center;
    }
}

@media (max-width: 670px) {
    .header__optional {
        gap: 25px;
        flex-wrap: wrap;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .download, .open {
        height: 25px;
    }
    /* .open-in-text-document {
    } */
}

@media (max-width: 460px) {
    .header__title {
        font-size: 40px;
    }
}

@media (max-width: 360px) {
    .header__title {
        font-size: 32px;
    }
}