/* This file has styles for use with fullpageJS */

/* Background */
:root{
    background-color: var(--background);
}

/* Fonts/Text */
h1,h2,h3,h4,h5,h6,p{
    color: aliceblue;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}
h1{
    font-size: 80px;
}
h2{
    font-size: 40px;
}
p{
    font-size: 16px;
    margin-left: 5%;
    margin-right: 5%;
}

/* Section */
.section{
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Grayscale effect */
.grayscale{
    filter: blur(1px) grayscale(100%) brightness(50%);
    transition: 700ms;
}

.slide{
    position: relative;
}

/* Section backgrounds */
#section0{
    background-image: url("images/Space1.jpg");
}
#section1{
    background-image: url("images/Mars1.jpg");
}
#section2{
    background-image: url("images/Ship1.jpg");
}

/* Use animations only on desktop */
@media only screen and (min-width: 700px) {
    .animated-r{
        position: absolute;
        left: 0;
        transform: translate3d(100vw, 0, 0);
        transition: transform 1500ms ease;
        right: 0;
    }

    .fp-section.active .animated-r{
        transform: translate3d(60vw, -20vh, 0);
    }

    .animated-l{
        position: absolute;
        left: 0;
        transform: translate3d(-40vw, 0, 0);
        transition: transform 1500ms ease;
        right: 0;
    }

    .fp-section.active .animated-l{
        transform: translate3d(0vw, -20vh, 0);

    }
}

/* Customize the fullpageJS watermark to match the site theme */
.fp-watermark {
    left: 0;
}
.fp-watermark a {
    background-color: var(--primary);
    color: var(--text);
}

/* Text box right */
.info-txt-r{
    background-color: var(--background);
    border-radius: 30px 0px 0px 30px;
    width: 40%;
    float: right;
    height: 40vh;
}
/* Text box left */
.info-txt-l{
    background-color: var(--background);
    border-radius: 0px 30px 30px 0px;
    width: 40%;
    float: left;
    height: 40vh;
}

/* Full width text boxes on mobile */
@media only screen and (max-width: 700px) {
    .info-txt-r{
        border-radius: 0px 0px 0px 0px;
        width: 100%;
    }

    .info-txt-l{
        border-radius: 0px 0px 0px 0px;
        width: 100%;
    }
}

/* Button to different page */
.link-btn{
	margin-top: auto;
	margin-bottom: 10px;
	background-color: var(--primary);
	padding-top: 2%;
	padding-bottom: 2%;
	color: aliceblue;
	border: none;
	width: 90%;
	border-radius: 8px;
	transition: 300ms;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.link-btn:hover{
	background-color: var(--secondary);
	transition: 300ms;
}