@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

::selection {
    background-color: rgb(14, 223, 133);
    color: white;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    /* background: rgb(13, 198, 176); */
    background: linear-gradient(to right, rgb(13, 198, 176), rgb(13, 226, 201));
    border-radius: 12px;
}

::-webkit-scrollbar-track {
    /* background: rgb(251, 179, 255); */
    background: linear-gradient(to right, rgb(251, 179, 255), rgb(235, 160, 237));
}


::-webkit-scrollbar-thumb:hover {
    /* background: rgb(13, 181, 156); */
    background: linear-gradient(to right, rgb(13, 181, 156), rgb(14, 215, 192));
}

::-webkit-scrollbar-thumb:active {
    /* background: rgb(12, 148, 148); */
    background: linear-gradient(to right, rgb(12, 148, 148), rgb(14, 195, 167));
}

body {
    font-family: 'Montserrat', sans-serif;
}

#logo {
    height: 50px;
    margin-right: 30px;
    margin-left: 15px;

    display: flex;
}

#logo:hover {
    cursor: pointer;
}

#header {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    flex-basis: 100%;
    width: 100vw;

    height: 75px;
    padding: 10px;
    top: 0;
    left: 0;

    box-shadow: 0px 5px 5px -4px darkgray;
    background-color: white;

    position: fixed;
}

#content {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;

    margin-top: 100px;

    width: 100vw;
}

.break {
    flex-basis: 100%;
    height: 0px;
}

button {
    border: 2px solid rgb(14, 223, 133);
    background-color: rgb(14, 223, 133);
    
    font-family: 'Montserrat', sans-serif;
    color: white;

    padding: 10px;
    margin: 20px;

    transition: all 0.4s;
}

button:hover {
    cursor: pointer;
    color: rgb(14, 223, 133);
    background-color: white;
}

a {
    text-decoration: none;
    color: inherit;
}

#feedback-button {
    background-color: rgb(14, 185, 223);
    border: 2px solid rgb(14, 185, 223);

    position: fixed;
    right: 0;
}

#feedback-button:hover {
    color: rgb(14, 185, 223);
    background-color: white;
}