* {
    font-family: Arial, serif;
}

[hidden] {
    visibility: hidden !important;
    display: none !important;
}

[disabled] {
    pointer-events: none;
    color: gray !important;
}

[disabled] * {
    pointer-events: none;
    color: gray !important;
}

main {
    margin-top: 2em;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-inline: 5vw;
    flex-grow: 1;
}

html {

}

body {
    background-image: url(bg-pattern.webp);
    max-width: 100vw !important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.img-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 10px;
}

h1 {
    margin: 5px;
    padding: 0;
}

article {
    border: black solid thin;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.65);
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.section-text {
    line-height: 25px;
}


.image {
    border-radius: 20px;
}

a {
    text-decoration: none;

}

a:hover {
    text-shadow: blue 0 0 50px;
}

.download-btns a > img:hover {
    box-shadow: cyan 0 0 10px;
}

.download-icon {
    width: 15px;
    height: 15px;
    rotate: 90deg;
    border-radius: 40%;
    display: inline-block;
    padding: 3px 4px 4px 6px;
    border: black solid 1px;
    background-color: white;
    color: rgba(238, 108, 108, 0.884);
}

.download-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}