@import url('https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles:wght@400;700&display=swap');

html,body{
	font-family: 'Fuzzy Bubbles', cursive;
	font-size: 20px;
	margin:0;
	padding:0;
	background:black url(../images/body-background.jpg) center top no-repeat;
	background-size:cover;
	color:white;
	height: 100%;
}

.main-logo{
    width: 300px;
    margin:0 auto 20px;
    filter:drop-shadow(0 0 10px black);
}

.main-logo img{
    max-width: 100%;
    
}

header{
	height:20px;
	width:100%;
	background:url(../images/border.jpg) center center;
	background-size: cover;
	box-shadow: 0 0 30px 10px black;
	text-align: center;
}

header a{
	color:#fff;
	text-decoration: none;
	text-shadow:0 0 10px black;
	transition:color 0.2s ease-in-out;
}

header a:hover{
	color:#00c7d9;
}

header q{
	color:#fff;
	text-decoration: none;
	text-shadow:0 0 10px black;
	transition:color 0.2s ease-in-out;
	padding: 110px 180px 0;
	width: 775px;
	display: block;
	box-sizing:border-box;
	position: relative;
	margin:0 auto;
}
header q:before,header q:after{
	content: "";
	display:block;
	height: 490px;
	width: 180px;
	position: absolute;
	top:0;
}
header q:before{
	background: url(../images/braket-l.png);
	left:0;
}
header q:after{
	background: url(../images/braket-r.png);
	right:0;
}
header q span{
	filter: drop-shadow(0px 0px 20px black) drop-shadow(0px 0px 20px black) drop-shadow(0px 0px 20px black);
	line-height: 1.3em;
    font-size: 23px;
}

.main-logo{
	display:block;
	margin:0 auto;
	max-width: 80%;
}

footer{
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	text-align: center;
}

.footer-logo{
	display:block;
	margin:0 auto;
}

footer a {
	display: block;
	margin:20px auto;
	width:200px;
	opacity:1;
	transition:opacity 0.2s ease-in-out;
}

footer a:hover{
	opacity:0.6;
}

.launchpad{
    display: flex;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

.launchpad a{
    display: block;
    background:#fff;
    border-radius: 10px;
    box-shadow: 0 0 20px black;
    margin:0 40px;
    padding:20px;
    text-align: center;
    text-decoration: none;
    filter: grayscale(0.5);
    transition: transform 0.5s ease-in-out, filter 0.5s;
}

.launchpad a:hover{
    transform: rotate(-2deg) scale(1.05);
    filter: grayscale(0);
}

.launchpad .inner{
    background:url(../images/card-bg.jpg) center bottom no-repeat;
    background-size: cover;
    padding: 20px 30px;
    margin-bottom: 20px;
}

.launchpad .left .inner{
    background-image: url(../images/card-bg-left.jpg);
}

.launchpad .logo{
    width: 300px;
    margin-bottom: 220px;
}

.launchpad .logo img{
    max-width: 100%;
}

.launchpad .label{
    font-size: 2em;
    color:black;
}

@media screen and ( max-height: 1200px ) {
    .main-logo{
        width: 200px;
    }
}

@media screen and ( max-height: 900px ){

    .main-logo{
        display: none;
    }
    

    .launchpad a{
        display: block;
        background:#fff;
        border-radius: 10px;
        box-shadow: 0 0 20px black;
        margin:0 40px;
        padding:20px;
        text-align: center;
        text-decoration: none;
        filter: grayscale(0.5);
        transition: transform 0.5s ease-in-out, filter 0.5s;
    }
    
    .launchpad a:hover{
        transform: rotate(-2deg) scale(1.05);
        filter: grayscale(0);
    }
    
    .launchpad .inner{
        background:url(../images/card-bg.jpg) center bottom no-repeat;
        background-size: cover;
        padding: 20px 30px;
        margin-bottom: 20px;
    }
    
    .launchpad .left .inner{
        background-image: url(../images/card-bg-left.jpg);
    }
    
    .launchpad .logo{
        width: 200px;
        margin-bottom: 150px;
    }
    
    .launchpad .logo img{
        max-width: 100%;
    }
    
    .launchpad .label{
        font-size: 2em;
        color:black;
    }
}
