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

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center center/cover;
    background-image: url(../img/coming_soon_1920px.jpg);
}

.services-button {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 10px;
    font-size: 18px;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    background: linear-gradient(to right, #87ceeb, #4682b4, #1e3a5f);
    transition: background 0.3s, transform 0.2s;
	font-family: "Noteworthy-bold";
	width: 100px;
}

.services-button:hover {
    background: linear-gradient(to right, #81d4fa, #0277bd);
    transform: scale(1.05);
	color: black;
}

.services-button:active {
    background: linear-gradient(to right, #0288d1, #01579b);
    transform: scale(0.95);
}

.overlay {
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    text-align: center;
    border-radius: 10px;
}

h1 {
    margin: 0;
    color: black;
	font-family: 'Brullos';
}

p {
    margin: 0px 5px;
    color: black;
	font-family: 'Noteworthy-bold';
}



/* Fixed Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 2560;
    background: black;
    color: white;
    text-align: center;
    padding: 0px 0px 15px 0px;
    margin: 0px auto 0px auto;
    height: 20px;
    font-family: Brullos;
    font-size: 16px;
    line-height: 32px;
}




/* Responsive Design */



@media (min-width: 1920px) {
	
	body {
    height: 100vh;
    background-image: url(../img/coming_soon_2560px.jpg);
		margin: 0px auto;
        padding: 0;
        background-color: #000000;
        color: #ffffff; /* Changed to white */
        width: 100%;
		align-content: center;
}


    .overlay {
        width: 50%;
		padding: 30px;
    }
	
	h1 {
        font-size: 60px;
	line-height: 60px;
    }
    p {
        font-size: 28px;
	line-height: 32px;
    }
}



@media (max-width: 1920px) {
	
	body {
    height: 100vh;
    background-image: url("../img/coming_soon_1920px.jpg");
}


    .overlay {
        width: 50%;
		padding: 30px;
    }
	
	h1 {
        font-size: 60px;
	line-height: 60px;
    }
    p {
        font-size: 28px;
	line-height: 32px;
    }
}

@media (max-width: 1200px) {
	body {
    height: 100vh;
    background-image: url(../img/coming_soon_1200px.jpg);
}


    .overlay {
        width: 50%;
		padding: 30px;
    }
	
	   h1 {
        font-size: 50px;
	line-height: 50px;
    }
    p {
        font-size: 24px;
	line-height: 30px;
    }
}

@media (max-width: 768px) {
	
	body {
    height: 100vh;
    background-image: url(../img/coming_soon_758px.jpg);
}

    .overlay {
        width: 80%;
        padding: 30px;
    }
     h1 {
        font-size: 45px;
	line-height: 45px;
    }
    p {
        font-size: 24px;
	line-height: 28px;
    }
}




@media (max-width: 480px) {
    .overlay {
        width: 80%;
        padding: 20px;
    }
    .services-button {
        font-size: 14px;
        padding: 8px 16px;
    }
    h1 {
        font-size: 40px;
	line-height: 40px;
    }
    p {
    font-size: 20px;
	line-height: 24px;
    }
}




@media (max-width: 300px) {
	
	body {
    height: 100vh;
    background-image: url(../img/coming_soon_300px.jpg);
}
	
    .overlay {
        width: 80%;
        padding: 15px;
    }
    .services-button {
        font-size: 12px;
        padding: 6px 12px;
    }
    h1 {
        font-size: 30px;
	line-height: 30px;
    }
    p {
        font-size: 18px;
	line-height: 22px;
    }
}
