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

/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
  font-family: "Inter-Regular";
  src: url("../fonts/Inter-Regular.ttf");
}

@font-face {
  font-family: "Inter-Medium";
  src: url("../fonts/Inter-Medium.ttf");
}

@font-face {
  font-family: "Inter-Bold";
  src: url("../fonts/Inter-Bold.ttf");
}

body, html {
    width: 100%;
    height: 100%;
    font-family: "Inter-Regular", Arial, sans-serif;
	font-size: 18px;
	line-height: 1.6;
}

.container-splash {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('../img/bg-splash.webp'); /* Desktop background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content-splash {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
}

.logo-splash {
    width: 400px;
    margin-bottom: 20px;
}

.text-splash {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 50px;
}

.start-btn-splash {
    display: inline-block;
	font-family: "Inter-Bold", Arial, sans-serif;
    padding: 12px 24px;
    background-color: #01377d; /* Button color */
    color: #fff;
	width: 400px;
    text-decoration: none;
    font-size: 1em;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.start-btn-splash:hover {
    background-color: #26b170; /* Hover color */
}

/* Mobile Background */
@media (max-width: 768px) {
    .container-splash {
        background-image: url('../img/bg-splash.webp'); /* Mobile background */
   	 align-items: baseline;
		padding-top: 50px;
	}
	.logo-splash {
    width: 300px;
}
	.text-splash {
    font-size: 1em;
}
	.content-splash {
    padding: 60px;
}
	.start-btn-splash {
    width: 90%;
}
}
