html {
    max-width: 100vw;
    height: fit-content;
    background-color: #141414;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-scrollbar {display: none;}
    &::-webkit-scrollbar {display: none;}
}

body {
    width: 100vw;
    max-width: 1000px;
    height: 100%;
    margin: 0px;
}

h1 {
    color: white;
    font-size: 170px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-style: italic;
    font-weight: 900;
    margin-bottom: 50px;
}

h2 {
    color: white;
    text-align: center;
    font-size: 60px;
    padding: 0px 20px;
    font-family: "Montserrat", sans-serif;
    font-style: italic;
    font-weight: 900;
    transition: ease-in-out 0.15s;
}

p {
    color: white;
    text-align: center;
    padding: 0px 40px;
    font-size: 25px;
    font-family: "Rubik", sans-serif;
    margin: 0px;
}

a {
    width: 300px;
    min-height: 55px;
    color: rgb(255, 255, 255);
    display: flex;
    border-radius: 15px;
    align-items: center;
    text-align: left;
    padding: 0px 30px;
    font-size: 15px;
    font-family: "Rubik", sans-serif;
    margin: 0px;
    background-color: #3c3c3c;
    text-decoration: none;
    transition: ease-in-out 0.15s;
}

a:hover {
    transform: scale(105%);
}

a:active {
    transform: scale(100%);
}

.role {
    font-size: 25px;
}

.role-2 {
    font-size: 18px;
}

#re {
    font-size: 15px;
}

.title {
    width: 100vw;
    height: 100dvh;
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(20, 20, 20)), url("cover.jpeg");
    background-size: cover;
    background-position: center 20%;
}

.title-text {
    width: 100vw;
    max-height: fit-content;
    gap: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: radial-gradient(rgba(20, 20, 20, 0.6) 40%, rgba(0, 0, 0, 0) 100%);
    align-items: center;
}

.scroll-button {
    width: 100vw;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: end;
    padding-top: 30px;
    padding-bottom: 30px;
}

.round {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-style: none;
    background-color: #2f2f2f;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: ease-in-out 0.15s;
    background-image: url("arrow-down.svg");
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
}

.round:hover {
    border-style: solid;
    border-width: 2px;
    border-color: #5f5f5f;
    border-radius: 15px;
    transform: scale(110%);
    animation: scrollButtonBg 0.4s linear 1;
}

@keyframes scrollButtonBg {
    0% {
        background-position: center;
    }
    50% {
        background-position: center 250%;
    }
    51% {
        background-position: center -250%;
    }
    100% {
        background-position: center;
    }
}

.round:active {
    transform: scale(95%);
    transition: ease-in-out 0.1s;
}

.questions {
    width: 100vw;
    height: 100dvh;
}

.input {
    height: 45px;
    width: 50%;
    min-width: 40px;
    border-style: solid;
    border-radius: 15px;
    background-color: #2f2f2f;
    border-color: #5f5f5f;
    border-width: 2px;
    padding: 5px 10px;
    color: white;
    font-size: 12px;
    outline: none;
}

input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px #2f2f2f inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

.input:focus {
    border-color: #0982D2;
}

#wrap-container {
    width: 100vw;
    height: fit-content;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 5vh;
    gap: 40px;
    margin-bottom: 60px;
}

#container-1 {
    flex-grow: 1;
    height: fit-content;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

#question-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    overflow: hidden;
    flex-grow: 1;
}

#h2-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

#h2-wrap {
    text-wrap: wrap;
}

#chat-container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    max-width: 450px;
}

#chat-container {
    min-width: fit-content;
    min-height: 518px;
    max-width: 450px;
    padding: 20px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    border: solid 2px #404040;
    border-radius: 25px;
    gap: 15px;
}

#next-previous-head {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 15px;
    border-bottom: solid 2px #404040;
    margin: 0px;
}

#next-previous {
    display: flex;
    gap: 8px;
    justify-content: center;
    width: fit-content;
    height: 100%;
    transform: scale(1.2);
}

img:hover {
    transform: scale(1.15);
    transition: ease-in-out 0.2s;
    cursor: pointer;
}

img:active {
    transform: scale(1);
    transition: ease-in-out 0.1s;
}

#individual {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: max-content;
    width: 100%;
    flex-grow: 1;
    max-height: 345px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.filler {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 12px;
    gap: 20px;
    min-height: 345px;
}

.question-align {
    display: flex;
    justify-content: end;
}

#question {
    text-align: end;
}

.chat-align {
    display: flex;
    justify-content: start;
}

.chat {
    text-align: start;
    width: 100%;
    max-width: 350px;
    color: rgb(255, 255, 255);
    font-family: "Rubik", sans-serif;
    font-size: 15px;
    padding: 0px;
    margin: 0px;
    word-wrap: break-word;
}

#chat-head {
    text-align: start;
    width: 100%;
    color: rgb(255, 255, 255);
    font-family: "Rubik", sans-serif;
    font-size: 25px;
    margin: 0px;
}

#button-container {
    width: 100%;
    display: flex;
    justify-content: start;
    gap: 20px;
}

#button-container2 {
    width: 75%;
    display: flex;
    justify-content: center;
    padding: 0px 20px 20px 20px;
    gap: 20px;
}

#submit-button-chat {
    min-width: 100%;
}

#ask {
    min-width: 100%;
    opacity: 0%;
}

#chat-input {
    text-align: start;
    width: 80vw;
    max-width: 350px;
    height: 70px;
    padding: 10px;
    resize: none;
}

#links-container {
    flex-grow: 1;
    height: fit-content;
    display: flex;
    justify-content: top;
    align-items: center;
    flex-direction: column;
    overflow: scroll;
    scrollbar-width: none;
}

#link-link {
    overflow: visible;
    display: flex;
    justify-content: top;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    border-color: transparent;
    border-width: 2px;
    border-radius: 15px;
    border-style: solid;
    transition: ease-in-out 0.2s;
}

.temp {
    width: 100vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#creator-cells {
    width: 80vw;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: end;
    gap: 70px;
    padding-bottom: 50px;
}

.cell {
    background-color: white;
    width: 250px;
    height: 300px;
    padding: 0px 10px;
    border-radius: 15px;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    transition: ease-in-out 0.15s;
    overflow: hidden;
}

#cell-1 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgb(20, 20, 20) 100%), url("Ben.jpeg");
    background-position: center;
    background-size: 150%;
}

#cell-2 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgb(20, 20, 20) 100%), url("Keegan.jpeg");
    background-position: center;
    background-size: cover;
}

#cell-3 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgb(20, 20, 20) 100%), url("Tate.jpeg");
    background-position: center;
    background-size: 180%;
}

#cell-4 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgb(20, 20, 20) 100%), url("John.jpeg");
    background-position: top 30%;
    background-size: 150%;
}

#cell-5 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgb(20, 20, 20) 100%), url("Kiara.jpeg");
    background-position: 75% 60%;
    background-size: 200%;
}

#cell-6 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgb(20, 20, 20) 100%), url("Chloe.jpg");
    background-position: center;
    background-size: cover;
}

#image {
    width: 100%;
    max-width: 320px;
    height: 183px;
    background-image: url("HPC-Logo.png");
    background-position: center;
    background-size: cover;
    margin: 50px 0px;
    border-radius: 15px;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 18vw;
    }

    p {
        font-size: 18px;
    }

    a {
        max-width: 60vw;
    }

    #inputs {
        padding: 20px;
    }

    .role {
        font-size: 25px;
    }

    .title {
        background-position: center;
    }

    #container-1 {
        max-width: 90vw;
        height: fit-content;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    #wrap-container {
        margin: 0px;
    }

    #inputs {
        width: 80vw;
        padding: 0px;
    }

    .submit-buttons {
        max-width: 80vw;
    }

    #question-container {
        width: 90vw;
        align-items: center;
    }

    #login {
        max-width: 80vw;
    }

    #creator-cells {
        width: 100vw;
    }

    #form-container {
        max-width: 75vw;
        min-width: 0px;
    }

    #chat {
        max-width: 75vw;
    }

    #chat-input {
        width: 70vw;
    }
}

@media screen and (max-width: 340px) {
    h2 {
        font-size: 15vw;
    }

    #inputs {
        padding: 0px;
    }
}
