main h1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
    font-family: Lexend;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

#timer {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 32px;
}

main {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}

main p {
    font-family: Lexend;
    font-weight: 200;
    text-align: justify;
}

main article ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgba(148, 187, 76, 0.22);
    padding: 16px 0;
    border-radius: 48px;
    list-style-type: none;
    width: 100%;
}

main article ul li a {
    text-decoration: none;
    font-family: Lexend;
    color: #255616;
}

main article ul li a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

main article {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

main aside h4 {
    color: #255616;
    font-family: Lexend;
    text-align: left;
}

main aside ul li a {
    color: #000;
    font-family: Lexend;
    line-height: 20px;
    font-size: 12px;
}

main aside ul li a:hover {
    text-decoration: none;
}

.collapse-content {
    display: none;
}

@media screen and (max-width: 700px) {
    main article ul {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    main article ul li a {
        display: block;
        padding: 16px;
    }
}

h2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
    font-family: Lexend;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

h2#ut {
    margin-top: -16px;
    margin-bottom: 32px;
}



.collapse-container h3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    color: #255616;
    font-family: Lexend;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    cursor: pointer;
}

.collapse-container {
    width: calc(100% - 48px);
    border: 0.5px dotted gray;
    border-radius: 24px;
    padding: 0 24px;
    margin: 8px 0;
}

.collapse-container p {
    -webkit-hyphens: auto;
    hyphens: auto;
    text-align: left;
}

.slideshow {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.slides {
    display: none;
    max-height: 220px;
    border-radius: 32px;
    cursor: pointer;
    transition: opacity 0.3s;
    max-width: calc(100vw - 16px);
}

.slides:hover {
    opacity: 0.8;
}

.slideshow button {
    border-radius: 32px;
    border: none;
    background-color: #e7f0d8;
    color: #255616;
    cursor: pointer;
    margin: 8px;
    width: 30px;
    height: 30px;
}

.slideshow button:hover {
    background-color: #255616;
    color: white;
}

.slBtn {
    margin-top: 8px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.slideshow a[target="_blank"]::after {
    content: none;
}