.bg {
    position: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    background-image: url("https://static.igem.wiki/teams/5370/title/parts.png");
}

.bg-filter {
    position: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.6);
}

.title {
    z-index: 1;
    height: calc(100vh);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 210px;
    color: rgb(234, 242, 255);
    overflow: hidden;
    --transform-scroll: 0;
    --transform-animation: 0;
    transform: translateY(var(--transform-scroll)) translateY(var(--transform-animation));
}

.container {
    display: flex;
    justify-content: center;
}

.catalog {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    left: 10px;
    width: calc(27.5% - 20px);
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    height: min-content;
    height: calc(100vh - 100px);
}

.catalog div {
    font-size: 26px;
    color: white;
    cursor: pointer;
}

.back-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: calc(100vh);
    width: 60px;
    height: 60px;
}

.back-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(gray 0%, gray 100%);
}

.back {
    position: absolute;
    top: 10%;
    left: 10%;
    height: 80%;
    width: 80%;
    border-radius: 50%;
    background-color: white;
}

.back img {
    margin-top: 7px;
    margin-left: 5px;
    height: 40px;
    cursor: pointer;
}

.active {
    color: rgb(255, 255, 255) !important;
}

.box {
    background-color: rgba(255, 255, 255);
    border-radius: 10px;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 30px;
    margin-bottom: 30px;
    width: 100%;
}

.main {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
    border-radius: 10px;
    padding: 0px 40px;
    font-size: 26px;
    color: black;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(70% - 10px);
    margin-left: 10px;
    margin-right: 2.5%;
    margin-bottom: 20px;
}

.paragraph {
    align-self: start;
    margin: 10px 0;
    text-align: justify;
}

.pic {
    width: 50%;
}

.cite {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    border-top: 3px solid black;
    border-bottom: 3px solid black;
}

.fade-in {
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        --transform-animation: 20px;
        opacity: 0;
    }

    to {
        --transform-animation: 0;
        opacity: 1;
    }
}

.t-title,
.t-columns {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.table {
    padding: 0 20px;
}

.t-title {
    font-weight: bold;
    border-bottom: solid 1px rgb(207, 207, 207);
}

.t-columns {
    padding: 8px 0;
    border-bottom: solid 1px rgb(207, 207, 207);
}

.col-1 {
    flex: .8;
    margin-left: 30px
}

.col-2 {
    flex: 1;
}

.col-3 {
    flex: 1.7;
}

.col-4 {
    flex: 1;
}

.bottom {
    position: absolute;
    width: 100%;
    /* You may need to add more styles for the Bottom component */
}