@font-face {
    font-family: "Monsterrat";
    src: url("./fonts/Montserrat-VariableFont_wght.ttf");
}
::-webkit-scrollbar{
    display: none;
}
*{
    padding: 0;
    margin: 0;
    font-family: Monsterrat;
    color: rgb(246, 246, 246);
    user-select: none;
}
a{
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    border-right:1px solid ;
    padding: 5px 10px;
    display: inline;
    font-size: .6em;
    margin: .5em 0;
    cursor: pointer;
}
.window{
    height: 100vh;
    background: rgb(146, 8, 8);
}
.w1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-image: url("./images/Air\ Jordan\ 32\ «\ Rosso\ Corsa\ ».jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: bg 3s infinite alternate ease-in-out;
}
@keyframes bg {
    0%{
        background-position: 30%;
    }
    100%{
        background-position: 70%;
    }
}
.w2{
    /* background: rgb(239, 211, 211); */
    background-image: radial-gradient(rgb(199, 204, 214) 20%,rgb(167, 166, 167) 100%);
    position: relative;
}
.w3{
    background: rgb(197, 196, 196);
    background-image: radial-gradient(rgb(199, 204, 214) 20%,rgb(167, 166, 167) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.BrandName{
    margin: 0 5em;
}
.BrandName p{
    font-size: .8em;
    margin: 1em 0;
}
.BrandName h2{
    font-size: 3.7em;
}
.Name-and-Nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
}
.hi-mid-low{
    display: flex;
    flex-direction: column;
    margin: 0 2em;
}
.hi-mid-low > a:hover,.hi-mid-low > a:focus{
    color: rgba(255, 255, 255, 1);
    transform: translateX(-10px);
    font-weight: 900;
}
.BrandsLogo{
    height: 25vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.547);
    position:absolute;
    bottom: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    overflow: hidden;
}
.ShoeBrandLogo{
    height: 6em;
    width: 6em;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .2;
}
.ShoeBrandLogo:hover{
    opacity: 1;
}
.blurLayer{
    z-index: 100;
    position:absolute;
    height: 25vh;
    width: 100vw;
    backdrop-filter: blur(4px);
}
.logoPanel{
    height: 20vh;
    background: rgba(0, 0, 0, 0.192);
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(1px 2px 0 black);
}
.ShoeSpecs{
    height: 80vh;
    width: fit-content;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transform: translateX(50px);
    z-index: 205;
}
.ShoeSpecs p{
    color: gray;
    text-transform: uppercase;
    margin: 1.5px;
    font-weight: 800;
    cursor: pointer;
}
.ShoeSpecs p:hover{
    filter: blur(0);
    color: black;
    cursor: pointer;
}
#highlight{
    color: rgb(181, 17, 17);
}
.AirJordanShoes{
    position:absolute;
    bottom: 100px;
    right: 300px;
    height: 350px;
    z-index: 150;
}
.colorOption{
    height: 10vh;
    width: 80vw;
    align-self: center;
    background: rgb(148, 147, 155);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    margin-top: 10px;
}
.colors{
    height: 15px;
    width: 15px;
    background: #000;
    margin: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.453);
}
.c1{background: red;}
.c2{background: orange;}
.c3{background: yellow;}
.c4{background: green;}
.c5{background: turquoise;}
.c6{background: blue;}
.c7{background: purple;}
.c8{background: magenta;}
.c9{background: grey;}
.c10{background: black;}
.active{
    height: 10px;
    width: 10px;
    border: 5px solid rgb(77, 17, 17);
}
.SubBrandsName p{
    color: gray;
    text-transform: uppercase;
    margin: 1.5px;
    width: fit-content;
    font-weight: 800;
}
.SubBrandsName p:hover{
    color: black;
}
.SubBrandsName{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    transform: translateX(-50px);
    z-index: 209;
    cursor: pointer;
}
.w3 .Shoe{
    position:absolute;
    align-self: center;
    transform: scaleX(-1) translate(400px,0) scale(1.0) scaleY(1.1);
    z-index: 200;
}
footer{
    height: 30vh;
    background: rgb(145, 145, 145);
    display: flex;
    justify-content: center;
    align-items: center;
}
footer a{
    border: 3px solid transparent;
    cursor: pointer;
    padding: 20px;
    color: rgb(204, 204, 213);
    font-size: .8em;
    z-index: 202;
    border-radius: 10px;
    background: #000;
    margin: 10px;
}
footer a:hover{
    background: none;
    border: 3px solid black;
    color: black;
    font-weight: 900;
}
.copyright{
    position:absolute;
    align-self: flex-end;
    margin: 20px;
    font-size: .7em;
    color: #000;
}
@media (max-width:1000px){
    .AirJordanShoes{
        position:absolute;
        /* bottom: 8em; */
        right: 20%;
        height: 300px;
    }
}

@media (max-width:600px){
    html{
        font-size: 9px;
    }
    .colorOption{
        transform: scale(.6);
        flex-wrap: wrap;
        height: fit-content;
        width: 70vw;
        min-width: 300px;
    }
    .w3 .Shoe{
        transform:scale(.5) scaleX(-1) translateX(300px);
    }
    .AirJordanShoes{
        position:absolute;
        bottom: 10em;
        right: 3em;
        height: 200px;
    }
    .ShoeSpecs{
        justify-content:center;
    }
    .ShoeBrandLogo img{
        height: 3em;
    }
    .logoPanel img{
        height: 3.5em;
    }
    footer{
        height: 20vh;
    }
}
@media (max-width:400px){
    .AirJordanShoes{
        position:absolute;
        height: 150px;
    }
}