.header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--header-background);
    backdrop-filter: blur(5px);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 0 0 20px 20px;
    text-align: center;
    z-index: 100;
    transition: transform 0.3s cubic-bezier(.19, 1, .22, 1);
}

.header-hide {
    transform: translateY(-100%);
    
}

.name {
    font-size: max(15px, min(5vw, 30px));
    margin-left: 10px;
}

#theme-switcher {
    display: block;
    /* position: fixed; */
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 30px;
    background-color: transparent;
}

.hidden {
    opacity: 0;
    transition: display 0.3s ease
}

.shown {
    opacity: 1;
}

.dark-theme-icon, .light-theme-icon {
    cursor: pointer;
    height: 40px;
    width: 30px;
}
.light-theme-icon {
    transform: translateY(-43px);
}

.logo {
    height: 30px;
    color: var(--header-color);
}

.full {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 98%;
    height: 100%;
}

.content {
    display: flex;
    flex-direction: column;
    width: 80%;
    min-width: fit-content;
    margin: 10px;
    padding: 20px;
    /* background: var(--content-background); */
    border-radius: 20px;
    /* box-shadow: var(--box-shadow); */
}


.vertical_delimiter {
    /* sperate element on a vertical axis */
    width: 70%;
    height: 2px;
    background: var(--content-border-color);
    margin: 20px 0;
    border-radius: 10px;
}

.horizontal_delimiter {
    /* sperate element on a horizontal axis */
    width: 2px;
    height: 70%;
    background: var(--content-border-color);
    margin: 20px 0;
    border-radius: 10px;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: auto;
    flex-shrink: 0;
    border-radius: 40px 40px 0 0;
    text-align: center;
    min-height: 100px;
    width: 100%;
    padding: 20px;
    background: var(--footer-background);    
}

footer p {
    margin: 0;
    padding: 10px;
    font-size: 1.2em;
    background-color: transparent;
    color: var(--header-color);
}

.footer_content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    width: 100%;
    border-radius: 20px;
    background: var(--footer-content-background);
}

.footer_content * {
    color: var(--header-color);
}

.footer_links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    gap: 5%;
}


.footer_links h2 {
    font-size: 1.5em;
    color: var(--header-color);
    margin: 10px;
}

.footer_credits {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
}

.footer_credits p {
    font-size: small;
    margin: 20px 0 0 10px;
    padding: 0;
}