@charset "UTF-8";
/* CSS Document */

/* Define custom font using @font-face */
@font-face {
    font-family: 'SF-Pro';
    src: url('Fonts/SF-Pro.ttf') format('truetype');
    /* Add additional font formats (e.g., woff, woff2) for cross-browser compatibility */
}






/* ENTIRE PAGE BODY EDIT */
body {
    color: #FFFFFF;
    font-family: 'SF-Pro', 'Helvetica', sans-serif; /* Use custom font 'SF-Pro', fallback to 'Helvetica', then generic sans-serif */
    background: #1e1e1e;
    margin: 0;
    padding-top: 0px;
	
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
}




.header {
 	margin-top: 0px;
		display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
	
}




.namesplash {
    font-size: 30px;
    font-weight: 200;
    text-align: left;
    padding-left: 0px;
    padding-top: 50px;
    margin-top: -30px;
    margin-bottom: -60px;

    transition: font-size 0.5s ease, font-weight 2.0s ease, width 3.0s ease, height 3.0s ease, border-radius 3.0s ease, background-color 0.3s ease, color 0.3s ease, text-shadow 0.5s ease;
}

.namesplash:hover {
    color: #FFFFFF;
    font-weight: bolder;
    justify-content: flex-end;
    text-shadow: 0 0 12px rgba(255, 255, 255, 1.0); /* This adds a white glow effect to the text */
}




.tagline {
    font-size: 25px;
    font-weight: lighter;
	color: #808080;
	margin-bottom: 50px;

	
	
}





/* LIST STYLING */
ul {
    align-content: left;
    padding-top: 280px;
    font-size: 70px;
}

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











.bodytext {
    font-size: 40px;
    font-weight: 300;
	letter-spacing: -1px;
    padding-left: 0px;
    color: white;
	
    margin-top: 100px;
	margin-left: 50px;
	margin-right: 30px;
}





.pages {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center items vertically */
    align-items: center; /* Center items horizontally */
    width: 100%;
}

.page {
    width: 100%; /* Set the width of the images to 100% of their container */
    height: auto; /* Maintain the aspect ratio */
    max-width: 800px; /* Set the maximum width */
}







h2 {
    font-weight: 400;
}

/* Media query for smaller screens (e.g., phones) */
@media only screen and (max-width: 600px) {
	
   .namesplash {
       font-size: 25px; /* Adjust font size for smaller screens */
       margin-left: 0px;
	   color: #FFFFFF;
	   margin-top: 0px;
	   margin-bottom: 0px;
	   font-weight: 200;


    }
    
	


	
    .tagline {
        font-size: 20px; /* Adjust font size for smaller screens */
        margin-top: -40px;
		margin-bottom: 50px;
    }

	
	.bodytext {
    font-size: 23px;
    font-weight: 300;
	letter-spacing: -1px;
    padding-left: 0px;
    color: #6E6E73;
	
    margin-top: 60px;
	margin-left: 40px;
	margin-right: 30px;
}
	
	
    .page {
        width: 100%; /* Set the width of the images to 100% of their container */
        height: auto; /* Maintain the aspect ratio */

    }
	
	
	
}
/* END OF MEDIA QUERIES */




