* {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
    box-shadow: border-box;
    display: flex;
    justify-content: center;
    background-color: #101010;
}

 ::-moz-selection {
  color: white;
  background: purple;
}

::selection {
  color: white;
  background: purple;
}

/* container */

.main_containt {
    background-color: transparent;
    width: 80%;
    height: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    font-family: "inter", serif;
}

.inside_banner_download {
    color: #fdfdfe;
}
.banner_download {
    width: 90%;
    height: 100%;
    margin-top: 100px;
}

.banner_image {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 30px;
}

.banner_image img {
    max-width:100%;
    width: 200px;
    height: auto;
    background-color: transparent;
}

.release-version {
    color: rgba(255, 255, 255, 0.684);
    font-size: 0.7em;
}

.title_side_image h1 {
    margin-bottom: 10px;
}
.short_information {
    margin-top: -40px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 30px;
    color: #fdfdfeee;
    font-size: 0.9em;
    font-weight: 300;
}

.banner_button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
#button_download {
    background-color: purple;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 5px;
    color: white;
    font-size: 0.9em;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid purple;
    transition: all ease 360ms;
}

#button_download:hover {
    background-color: rgb(156, 2, 156);
    border: 1px solid rgb(156, 2, 156);
}

#button_md5:hover {
    border: 1px solid rgb(156, 2, 156);
    color: rgb(156, 2, 156);
}
#button_md5 {
    border: 1px solid purple;
    background-color: transparent;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 5px;
    color: purple;
    font-size: 0.9em;
    text-decoration: none;
    font-weight: 500;
}

.download_information {
    background-color: transparent;
    width: 100%;
    height: 100%;
    min-height: 10dvh;
    margin-top: 70px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
}

.screenshot {
    width: 90%;
    height: 100%;
    padding: 20px;
    background-color: #242428;
    border-radius: 5px;
    border: 1px solid #f1f1f110;
}

.screenshot h1 {
    color: #f1f1f1;
    border-bottom: 1px solid #f1f1f110;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-weight: 450;
    font-size: 1.2em;
}

.image-screenshot {
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    scrollbar-color: yellow;
    margin-top: 30px;
}

.image-screenshot img {
    width: 600px;
    max-width: 100%;
    border-radius: 3px;
    border: 1px solid #f1f1f110;
}

.download_description {
    width: 90%;
    height: 100%;
    padding: 20px;
    background-color: #242428;
    border-radius: 5px;
    border: 1px solid #f1f1f110;
}

.download_description h1 {
    color: #f1f1f1;
    border-bottom: 1px solid #f1f1f110;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-weight: 450;
    font-size: 1.2em;
}

.download_description br {
    margin-bottom: 10px;
}

.description {
    color: #f1f1f1f6;
    font-size: 0.9em;
}

.description a {
    color: rgb(189, 1, 189);
    text-decoration: none;
}
.hardware-requirements {
    width: 90%;
    height: 100%;
    padding: 20px;
    background-color: #242428;
    border-radius: 5px;
    margin-bottom: 70px;
    border: 1px solid #f1f1f110;
    color: #f1f1f1f6;

}

.hardware-requirements h1 {
    color: #f1f1f1;
    border-bottom: 1px solid #f1f1f110;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-weight: 450;
    font-size: 1.2em;
}

.requirements ul {
    gap: 5px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.requirements li {
    list-style: none;
    font-weight: 450;
    font-size: 0.9em;
    gap: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.requirements  span {
    font-weight: normal;
    color: #f1f1f1c2;
}