@font-face {
    font-family: 'frutiger';
    src: url("../fonts/frutiger.ttf");
}

@font-face {
    font-family: 'neuro';
    src: url("../fonts/neuro.ttf");
}

html{
    cursor: url("../cur/program/Normal.cur"), default;
}
body{
    transition: background-image 0.5s ease;
    margin: 0px;
    background-image: url("../imgs/frutiger/bg1.jpg");
    background-size: auto;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.368);
    background-blend-mode: overlay;
    color: white;

    cursor: url("../cur/program/Normal.cur"), default;
    a{
        cursor: url("../cur/program/Link.cur"), pointer;
    }
    h1, h2, h3, h4, h5, p{
        cursor: url("../cur/program/Text.cur"), text;
    }
}

.hScrollMenu{
    padding-top: 30px;
}

.item{
    text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.626);
    filter: brightness(120%);
    transition: scale 0.15s ease;
    margin-left: 8%;
    margin-right: 8%;
    margin-bottom: 3%;
    width: auto;

    height: 100%;
    max-height: 100%;

    display: none;

    background: linear-gradient( 180deg, rgba(181, 181, 181, 0.668) 0%, rgba(179, 179, 179, 0.427) 20%, rgba(166, 166, 166, 0.471) 40%, rgba(249, 249, 249, 0.464) 100% );
    border-radius: 50px;
    box-shadow: 0px 0px 35px white;

    .description{
        padding: 10px;

        .title{
            margin-top: 3%;
            margin-left: 5%;
            font-family: 'frutiger';
        }
    }

    a{
        color: rgb(0, 166, 255);
        &:hover{
            color: rgb(0, 110, 255);
        }
    }

    &:hover{
        scale: 1.03;
    }
}

.desc{
    margin-left: 10%;
    margin-right: 3%;
    font-family: 'neuro';
    font-size: 14px;
}

#titleDiv{
    margin-top: 5%;
    margin-bottom: 0px !important; 
    font-family: 'frutiger';
    font-size: 42px;
    text-align: center;

    h1{
        margin-bottom: 20px;
        text-shadow: 0px 0px 30px white;
    }
}

.header{
    margin: 0px;
    padding-bottom: 5px;
    background-color: white;
    text-align: center;
    transition: filter 0.5s ease;
    box-shadow: 0px 5px 35px white;
    position: relative;

    .eye{
        margin-top: 10px;
        height: 50px;
    }

    .pupil{
        width: 80px;
        height: 50px;
        filter: invert();

        position: absolute;
        left: 50%;
        top: 50%;
    }

    &:hover{
        filter: invert();
    }
}

.content-container{
    position: relative;
    margin-bottom: 7%;
}

.control-container{
    .prev {
        position: absolute;
        top: 52%;
        left: 1.5%;
        width: auto;
        padding: 15px;
        color: white;
        font-weight: bold;
        font-size: 54px;
        transition: 0.25s ease;
        user-select: none;
    }
    
    .next {
        position: absolute;
        top: 52%;
        right: 1.5%;
        width: auto;
        padding: 15px;
        color: white;
        font-weight: bold;
        font-size: 54px;
        transition: 0.25s ease;
        user-select: none;
    }

    .prev:hover, .next:hover{
        scale: 1.1;
        text-shadow: 0px 0px 30px white;
    }
}

@media only screen and (max-width: 800px) {
    .prev, .next{
        display: none;
    }
}


