/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set Open Sans as the default font */
body {
    font-family: 'Open Sans', sans-serif;
}

/* Full-width background image */
.background-image {
    background-image: url('images/bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Adjust as needed */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Centered logo */
.logo {
    max-width: 80%; /* Adjust as needed */
    height: auto;
    text-align: center;
}

.logo img {
    max-width: 100%; /* Make sure the image doesn't overflow its container */
}

/* Optional: Add some styling to text content */
.content {
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 80%; /* Adjust as needed */
}

.content h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

a {
	color: white;
}

a:visited {
  color: white;
}
