@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');


/*********** TAGS ***********/

html {
    height: 100%;
}

body {
    background-color: black;
    color: white;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
}

body, p, h1 {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
}

header {
    padding: 0;
}
@media (orientation: portrait) {
    header {
        padding: 1vh 3vh;
    }
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
@media (orientation: portrait) {
    video {
        max-width: none;
        width: 100%;
        height: 40vh;
    }
}

small {
    display: block;
    padding: 20px;
    font-size: 0.8vw;
}
@media (orientation: portrait) {
    small {
        font-size: 3vw;
    }
}


/*********** CLASSES ***********/

/* Header */
.logo-header {
    display: none;
}
@media (orientation: portrait) and (max-height: 3200px) {
    .logo-header {
        display: block;
        width: 100%;
        height: 100px;
    }
}
@media (orientation: portrait) and (max-height: 1600px) {
    .logo-header {
        display: block;
        width: 100%;
        height: 75px;
    }
}
@media (orientation: portrait) and (max-height: 1000px) {
    .logo-header {
        display: block;
        width: 100%;
        height: 30px;
    }
}
.logo-header img {
    height: 100%;
}

.logo-header #logo_left {
    float: left;
}
.logo-header #logo_right {
    float: right;
}

@media (orientation: portrait) {
    .center {
        height: auto;
    }
}

.container {
    height: 100%;
}

/* Video player */
.video-player {
    position: relative;
    height: 100%;
    background: black;
}
@media (orientation: portrait) {
    .video-player {
        height: 40vh;
    }
}

/* Background and carousel */
@media (orientation: portrait) {
    .full {
        display: none !important;
    }
}
.background {
    display: none;
}
@media (orientation: portrait) {
    .background {
        width: 100%;
        height: auto;
        display: block;
        position: absolute;
        top: 40%;
        z-index: -1;
    }
    .background img {
        width: 100%;
    }
}

.carousel {
    display: none;
}
@media (orientation: portrait) {
    .carousel {
        display: block;
        position: absolute;
        width: 90%;
        top: 70%;
        right: 50%;
        transform: translate(50%, -50%);
        z-index: 1;
    }
    .carousel #img_oculus {
        display: none;
    }
}

.info {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 90%;
    left: 50%;
    transform: translate(-15%, -50%);
}
@media (orientation: portrait) {
    .info {
        display: block;
        left: auto;
        transform: none;
/*        top: 220%;*/
    }
}

/* Texts */
.titles {
    display: none;
    width: 90%;
    font-family: 'Roboto', sans-serif;
    font-size: 4vw;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

/* Buttons */
.btn {
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1vw;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border: 2px solid #4CAF50;
}
@media (orientation: portrait) {
    .btn {
        font-size: 5vw;
    }
}

.btn-info {
    background-color: #4CAF50;
    color: white;
/*    border: 2px solid #4CAF50;*/
}

.btn-info:hover {
    background-color: white; 
    color: black; 
/*    border: 2px solid #4CAF50;*/
}

/*********** IDS ***********/

#logo_anim, #logo_center, #end1, #end2, #end3 {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}
#logo_anim {
    width: 20vw;
}
@media (orientation: portrait) {
    #logo_anim {
        width: 40vw;
    }
}