@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    font-size: 62.5%;
}

body {
    line-height: 1;
    font-size: 1.6rem;
    overflow: hidden;

}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*  */

body {

    height: 100vh;
    width: 100%;

    margin: 0;
    padding: 0;
    font-family: 'Montserrat';

    display: flex;
    

    /* align-items: center; */
    flex-direction: column;
    justify-content: space-between;
    /* position: relative; */
}

header,
footer {
    width: 100%;
    height: 40px;
    background: black;

    color: white;
    font-family: 'Montserrat';
}

.barContainer {
    width: 100px;
    height: 40px;

    display: flex;
    justify-content: space-around;
}

.headerBar {
    width: 15px;
    height: 40px;

    background: #ffd700;

    transform: skew(20deg);
}

footer {
    display: flex;
    justify-content: flex-end;
}

.footerBar {
    width: 15px;
    height: 40px;

    background: #ffd700;
    transform: skew(20deg);
}



main {
    height: 100%;
    /* border: 2px solid red; */

    padding: 0;
    margin: 0;
    
    display: flex;
    justify-content: space-around;
    align-items: center;

    place-items: center;

    flex-wrap: wrap;

    position: relative;

}

.comingSoonContainer {
    position: relative;
    
    /* width: 100%;
    height: 100%; */

    display: flex;
    flex-wrap: wrap;


}

.card {
    max-width: 400px;
    padding: 2px;
    height: 400px;

    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;

    background: black;
}


h1, span {
    width: 100%;
}
h1 {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: bold;

    color: #ffd700;
}
span {
    color: white;
}

img {
    color: #ffd700;
}

.logoContainer {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.gearBox {
    width: 400px;
    height: 100%;
    position: absolute;

    display: flex;
    justify-content: space-around;

}

.gearBox:first-of-type{
    bottom: 0%;
}

.topBox{
    top: -24%;
    width: 100%;
    
    .gears_mid{
        position: absolute;
        top: 14%;
        right: 12%;
    }

    .gears_left{
        position: absolute;
        z-index: -2;
        top: 4%;
    }
    .gears_right{
        position: absolute;
        top: 14%;
        left: 12%;
    }
}
.gearBox:nth-of-type(2){
    width: 100%;
    bottom: -23%;
    right: 0px;
    z-index: -1;

    .gears_mid{
        position: absolute;
        left: 12%;
        top: 13%;

    }
    .gears_right{
        position: absolute;
        right: 12%;
        top: 13%;
    }
    .gears_left{
        position: absolute;
        z-index: -2;
        top: 3%;

    }

}

.gearBox:nth-of-type(2){
    transform: scale(-1, -1);
    z-index: -1;
}

.gears_left {
    width: 100px;
    transform: rotate(75deg);
    z-index: -1;
    
}

.gears_mid {
    width: 60px;
    transform: rotate(-75deg);
    z-index: -1;
    fill: #ffd700;
    stroke: black;
}

.gears_right {
    width: 60px;
    transform: rotate(-75deg);
    z-index: -1;
    fill: #ffd700;
    stroke: black;
    
}

@keyframes slow-rotating_clockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }


}

@keyframes slow-rotating_rev_clockwise {
    from {
        transform: rotate(359deg);
    }
    to {
        transform: rotate(0deg);
    }


}

.rotating_clockwise {
    animation: slow-rotating_clockwise 5s linear infinite;
}

.rotating_rev_clockwise {
    animation: slow-rotating_rev_clockwise 5s linear infinite;
}

@media (min-width: 900px) {
    .card {
        width: 400px;
    }
    
    .topBox{
        top: -24%;
        
        .gears_mid{
            position: absolute;
            top: 14%;
            right: 12%;
        }

        .gears_left{
            position: absolute;
            z-index: -2;
            top: 4%;
        }
        .gears_right{
            position: absolute;
            top: 14%;
            left: 12%;
        }
    }
}

@media (max-width: 900px) {
    
    .gearBox {
        width: 100%;
    }

    .topBox{
        top: -24%;
        
        .gears_mid{
            position: absolute;
            top: 14%;
            right: 12%;
        }

        .gears_left{
            position: absolute;
            z-index: -2;
            top: 4%;
        }
        .gears_right{
            position: absolute;
            top: 14%;
            left: 12%;
        }
    }
    
    .gearBox:nth-of-type(2){
        width: 100%;
        bottom: -23%;
        right: 0px;
        z-index: -1;

        .gears_mid{
            position: absolute;
            left: 12%;
            top: 13%;

        }
        .gears_right{
            position: absolute;
            right: 12%;
            top: 13%;
        }
        .gears_left{
            position: absolute;
            z-index: -2;
            top: 3%;

        }

    }
}