<title>Welcome to CollegeApp Scout</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
.welcome-container {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 400px;
margin: auto; /* Center the container */
}
h1 {
color: #3498db;
font-size: 28px;
margin-bottom: 20px;
}
p {
color: #333;
font-size: 16px;
margin-bottom: 20px;
}
a {
text-decoration: none;
color: #3498db;
font-weight: bold;
}
</style>