* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-touch-callout:none;
    -webkit-user-select: none;
    scroll-behavior: smooth;
}

*::-webkit-scrollbar {
    display: none;
}

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

a:visited {
    color:white;
}

body {
    background-color: black;
    color:white;
    font-family: 'montserrat', sans-serif;
    height: 100%;
    width: 100%;
}

button {
    background-color: rgba(255, 255, 255, 0.25);
    color:white;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    height: 52px;
    margin: 15px 16px 30px 0px;
    width: 88px;
}

button:hover {
    background-color: white;
    color: black;
}

.carousel { 
    align-items:first baseline;
    display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    height: 240px;
    overflow-x: scroll;
    width: 100%;
}

.catalogue {
    background: linear-gradient(180deg, rgba(0,0,0,0.001) 1.5%, rgba(0,0,0,0.05) 3%, rgba(0,0,0,0.1) 6%, rgba(0,0,0,0.5) 12%, rgba(0,0,0,1) 28%);
    margin-top: 15px;
    padding: 15px 0 30px 0;
    width: 100%;
}

.category h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    margin: 0 0 10px 1.5rem;
}

.fa {
    align-items: center;
    display: flex;
        justify-content: center;
    font-size: 1.1rem;
}

.flex {
    display: flex;
        flex-wrap: wrap;
}

figcaption {
    font-weight: 500;
    max-width: 290px;
    text-align: center;
    text-shadow: 0 0 0.5px ghostwhite;
}

header {
    background-color: black;
    display: flex;
    width: 100%;
}

.logo img { 
    margin: 12px 8rem 0px 2.5rem;
    -webkit-user-drag:none;
    width: 140px;
}

main {  
    max-height: 100vh;
    overflow-y: scroll;
    position: relative;
    width: 100%;
}

.menu { 
    align-items: center;
    display: flex;
        flex-wrap: wrap;
        gap:36px;
        justify-content: space-around;
    font-weight: 500;
    letter-spacing: 0.6px;
    width: 100%;
}

.menu li { 
    cursor: pointer;
    font-size: 1rem;
    list-style: none;
}

.menu li:active, 
.menu li:hover {
    text-shadow: 0 0 2px ghostwhite;
}

nav { 
    display: flex;
        flex-wrap: wrap;
    width: 85%;
}

#play-icon {
    height:1.1rem;
    margin-top:4px;
    margin-bottom:-4px;
}

#play-button {
    padding-top:4px;
}

#plus { 
    height: 1rem;
    margin-top:4px;
    margin-bottom:1px;
}

.right-nav { 
    align-items: center;
    display: flex;
        justify-content: space-evenly;
    letter-spacing: 0.5px;
    margin-left: auto;
    width: 30%; 
}

.right-nav img { 
    border-radius: 6px;
    margin: 6px 10px 2.5px 10px;
    -webkit-user-drag: none;
    width: 50px;
}

.right-nav p {
    text-shadow: 0 0 0.5px ghostwhite;
}

.right-nav span {
    cursor: pointer;
}

.selection img {
    border-radius: 5px;
    cursor: pointer; 
    height: 180px;
    object-fit: fill;
    margin-left: 10px;
    -webkit-user-drag: none;
    width: 280px;
}

.selection img:active, 
.selection img:hover {
    border: solid ghostwhite 2px;
    transition: ease-in-out;
    transition-duration: 1.1s;
}

.showcase { 
    min-height: 70vh;
    transition: 5s ease-in-out 1000ms;
}

.showcase-img {
    object-fit: fill;
    margin-left:0.5%;
    -webkit-user-drag: none;
    width: 180px;
}

.showcase-title { 
    display: flex;
        flex-direction: column;
    padding-top: 50vh;
    padding-left: 2.5%;
    transition: 5s ease-in-out 1000ms;
}

.togglebtn {
    display: none;
}

video {
    margin:0;
    padding:0;
    height: 100vh;
    object-fit: cover;
    position: absolute;
        left: 0;
        top: 0;
    width: 100%;
    z-index: -1;
}


@media (max-width:1200px) {

    .logo img { 
        margin-right: 7rem;
    }

    .menu { 
        display: flex;
            gap:34px;
    }
}

@media (max-width:1100px) {

    .logo img { 
        margin-right: 5.5rem;
    }

    .menu { 
        display: flex;
            gap:33px;
    }
}

@media (max-width:1000px) {

    .fa-bell-o {
        display: none;
    }

    .logo img { 
        margin-right: 4rem;
    }

    .menu { 
        display: flex;
            gap:28px;
        letter-spacing: 0.5px;
    }
}

@media (max-width:925px) {

    .logo img { 
        margin-right: 2.5rem;
    }

    .menu { 
        display: flex;
            gap:26px;
        letter-spacing: 0.4px;
    }
}

@media (max-width:875px) {

    nav {
        display: none;
    }

    .togglebtn {
        display: block;
        font-size: 2rem;
        margin-top: 8px; 
        position:absolute;
            right: 2%;
    }
}
