

section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    row-gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    align-items: center;
}

.links {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 10px;
    color: rgb(50, 51, 54);
}

section a {
    margin: 12px;
    color: rgb(32, 32, 32);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    border-bottom: solid 2px transparent;
    /* border-top: solid 2px transparent;
    border-left: solid 3px transparent;
    border-right: solid 3px transparent; */
    /* border-radius: 5px; */
    padding: 5px;
}

section a:hover {
    border-bottom: solid 2px;
    /* border-top: solid 2px;
    border-left: solid 3px;
    border-right: solid 3px;
    background-color: #fcfcfc; */
}










/* Beta */

section span {
    font-size: 1.2rem;
    font-weight: bold;
    color: rgb(50, 51, 54);
    margin-bottom: 10px;
    cursor: pointer;
    border-bottom: solid 2px transparent;
    transition: all 0.3s ease;
}
section span:hover, section span a:hover {
    color: rgb(63, 165, 233);
    border-bottom: solid 2px rgb(63, 165, 233);
}

section span a {
    color: rgb(50, 51, 54);
    border-bottom: solid 2px transparent !important;
}
section video {
    max-width: 100%;
    height: auto;
    border: solid 2px transparent;
    transition: all 0.3s ease;
}

.video {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

.hidden {
    display: none;
}