/* CSS Reset / Normalize */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color: white;
    background-color: rgb(13, 11, 11);
}

/*SCROLL CONTAINER*/

.scroll-container {
    position: relative;
    border-radius: 10px;
    border: 1px solid gray;
    overflow-y: scroll;
    padding: 1rem 3rem;
    background-color: white;
    color: black;
    text-align: center;
}

.scroll-container p{
    padding-bottom: 1rem;
}

#interactivity-container {
    height: 46vh;
    display: flex;
    align-items: center;
    flex-direction: column;
}

/*SCROLL BUTTON*/

#btnScrollToTop img {
    border-radius: 100px;
    position: absolute;
    right: 10px;
    bottom: -1250px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    z-index: 999;
}

#btnScrollToTop img:hover {
    height: 6.3rem;
    box-shadow: 0 0 20px 5px #00ffff;
}

