

* {
    font-family: Avenir, Sans, "Helvetica Neue", Calibri, "SF Pro Rounded", serif;
}

a {
    text-decoration: none;
    color: #0275ff;
}

a:visited {
    color: #0275ff;
}

body {
    margin: 0;
}

@media (max-width: 600px) {
    .on-desktop {
        display: none;
    }
}


@media (prefers-color-scheme: light) {
    body {
        background: white;
        color: black;
    }

    .star {
        fill: #000000;
    }

    #submit-comment svg g path, .svg-fill {
        fill: #000000;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background: rgba(30,30,30,1);
        color: rgba(255, 255, 255, 0.8);
    }

    input {
        background: #373737;
        border-style: solid;
        border-color: #0b71f4;
        border-radius: 5px;
        color: rgba(240, 240, 240, 1);
    }

    input[type="range"] {
        -webkit-appearance: none;
        background: rgba(55, 55, 55, 0.45);
        height: 10px;
        border-radius: 5px;
        border-style: none;

    }

    .hr {
        height: 1.5px;
        width: 200px;
        border-radius: 5px;
        background: rgba(255,255,255,0.4);
    }


    .indicator {
        width: 0;
        height: 10px;
        background: #0b71f4;
        margin-top: -17px;
        margin-left: 5px;
        border-radius: 5px;
    }

    textarea {
        background: #373737;
        border-style: solid;
        border-color: #0b71f4;
        border-radius: 5px;
        color: rgba(240, 240, 240, 1);
    }

    .img-input {
        padding-top: 5px;
        padding-bottom: 5px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .star {
        fill: #ffffff;
    }

    #submit-comment svg g path, .svg-fill path {
        fill: #ffffff;
    }

}

#page {
    margin: 40px;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    height: 60px;
    background: rgb(31, 31, 31, 0.1);
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
    box-shadow: rgba(170, 170, 170, 0.25) 0 1px 0;
    z-index: 1000;
}

header {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 5px;
    backdrop-filter: blur(20px);
}

.header-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 34px;
    max-width: 66%;
    margin-inline: auto;
}

header * {
    transition: 0.2s;
}

/*header * :active {*/
/*    transform: scale(1.05);*/
/*}*/

.icon {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    border-radius: 20%;
    max-height: 250px;
    max-width: 250px;
}

#hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#hero-section * {
    text-align: center;
}

.h-scrollview {
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    margin: 2vw;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    min-height: 400px;
}

#info-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    margin-top: 1vw;
    margin-bottom: 1vw;
}

.info {
    display: flex;
    max-width: 400px;
    min-width: 300px;
    border-radius: 10px;
    padding: 34px;
    background: rgba(0, 0, 0, 0.15);
    margin: 8px;
    flex-shrink: 1;
}

.info h3 {
    color: #0275ff;
}

footer {
    display: flex;
    flex-direction: column;
    height: 180px;
    background: rgba(0, 0, 0, 0.15);
}

footer .footer-items {
    gap: 35px;
    display: flex;
    flex-direction: row;
    margin: auto;
}

footer h3 {
    color: #0275ff;
}

footer a {
    text-decoration: underline;
    color: inherit;
}

footer a:visited {
    color: inherit;
}
