.page-background {
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-color: rgb(var(--primary-color));
}

section {
    min-height: 100lvh;
}

section.header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section:not(.header-section) {
    background: linear-gradient(rgb(var(--primary-color)) 80px, rgba(var(--primary-color), 0.3125));
    padding: 0 5% 30px;
}

section>h1,
section>.takes-list {
    max-width: max-content;
    margin: 0;
    text-align: center;
}

section>h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

section>h2 {
    text-align: center;
    padding: 40px 0;
    font-size: 32px;
    margin: 0;
}

.takes-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.takes-list span {
    padding: 0 10px;
    border-right: 2px solid rgb(var(--font-color));
}

.takes-list span:last-child {
    border-right: 0;
}

.takes-list span a {
    color: inherit;
    text-decoration: none;
    position: relative;
}

.takes-list span a::after {
    content: " ";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    border-bottom: 1px solid rgb(var(--font-color));
    transition: right ease 0.5s;
}

.takes-list span a:hover::after {
    right: 0;
}

.go-home-btn-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 70px;
    height: 70px;
    background: rgb(var(--card-color));
    box-shadow: 0 0 5px rgb(var(--card-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .1s ease-in-out;
}

.go-home-btn {
    border: 6px solid rgb(var(--font-color));
    width: 20px;
    height: 20px;
    border-bottom: 0;
    border-left: 0;
    transform: rotate(-45deg) translateY(10%) translateX(-10%);
}
